Create the new database (
Figure 4.5).
CREATE DATABASE accounting;
This first line, as you've already seen, creates the database (assuming that you are logged in to
mysql as a user with permission to create new databases).
Also, although SQL is case insensitive, I will make it a habit to capitalize the SQL words, helping to separate them from the database, table, and column names. If you would rather not capitalize these terms, you have that option.
