To create a new database in your MySql Server, following is the general syntax:
CREATE DATABASE <database_name>;
For example:
CREATE DATABASE students;
The above expression, creates a Database of the name Students in your MySql DBMS (Database Management System).
Similarly, to create a new table, you will have to following the following expression: