Creating A Database
We'll use the create database statement to create a new database. Databases contain tables, which contain fields, which contain your data.
create database employees;
A database holds a set of tables. Tables hold a set of fields.