34,333
edits
Changes
→Creating a New MySQL Database
</pre>
In this situation, a different database name should be selected, or the ''IF NOT EXISTS'' option, which only creates the database if it does not already exists, and does not report and an error if it does:
<pre>
CREATE DATABASE IF NOT EXISTS MySampleDB;
</pre>