1. By executing a simple SQL query
  2. By using forward engineering in MySQL Workbench In this SQL Tutorial, you will learn-

How to Create Database in MySQL How to Create Table in MySQL Data types MySQL workbench ER diagram forward Engineering

As SQL beginner, let’s look into the query method first. Note: you can also use the command CREATE SCHEMA instead of CREATE DATABASE CREATE DATABASE is the SQL command used for creating a database in MySQL. Imagine you need to create a database with name “movies”. You can create a database in MySQL by executing following SQL command. Now let’s improve our SQL query adding more parameters and specifications.

IF NOT EXISTS

A single MySQL server could have multiple databases. If you are not the only one accessing the same MySQL server or if you have to deal with multiple databases there is a probability of attempting to create a new database with name of an existing database . IF NOT EXISTS let you to instruct MySQL server to check the existence of a database with a similar name prior to creating database. When IF NOT EXISTS is used database is created only if given name does not conflict with an existing database’s name. Without the use of IF NOT EXISTS MySQL throws an error.

Collation and Character Set

Collation is set of rules used in comparison. Many people use MySQL to store data other than English. Data is stored in MySQL using a specific character set. The character set can be defined at different levels viz, server , database , table and columns. You need to select the rules of collation which in turn depend on the character set chosen. For instance, the Latin1 character set uses the latin1_swedish_ci collation which is the Swedish case insensitive order. The best practice while using local languages like Arabic , Chinese etc is to select Unicode (utf-8) character set which has several collations or just stick to default collation utf8-general-ci. You can find the list of all collations and character sets here You can see list of existing databases by running following SQL command.

MySQL Create Table Example

Below is a MySQL example to create a table in database:

Tables can be created using CREATE TABLE statement and it actually has the following syntax. HERE

		“CREATE TABLE” is the one responsible for the creation of the table in the database.

		“[IF NOT EXISTS]” is optional and only create the table if no matching table name is found.

		“`fieldName`” is the name of the field and “data Type” defines the nature of the data to be stored in the field.

		“[optional parameters]” additional information about a field such as ”  AUTO_INCREMENT” , NOT NULL etc.

Now let’s see what the MySQL’s data types are. You can use any of them depending on your need. You should always try to not to underestimate or overestimate potential range of data when creating a database.

DATA TYPES

Data types define the nature of the data that can be stored in a particular column of a table MySQL has 3 main categories of data types namely

		  Numeric,

		  Text

		  Date/time.

	Numeric Data types

Numeric data types are used to store numeric values. It is very important to make sure range of your data is between lower and upper boundaries of numeric data types.

	Text Data Types

As data type category name implies these are used to store text values. Always make sure you length of your textual data do not exceed maximum lengths. Date / Time Apart from above there are some other data types in MySQL. Now let’s see a query for creating a table which has data of all data types. Study it and identify how each data type is defined in the below create table MySQL example. Best practices

	Use upper case letters for SQL keywords i.e. “DROP SCHEMA IF EXISTS `MyFlixDB`;”

	End all your SQL commands using semi colons.

	Avoid using spaces in schema, table and field names. Use underscores instead to separate schema, table or field names.

How to create MySQL workbench ER diagram forward engineering

MySQL workbench has utilities that support forward engineering. Forward engineering is a technical term is to describe the process of translating a logical model into a physical implement automatically. We created an ER diagram on our ER modeling tutorial. We will now use that ER model to generate the SQL scripts that will create our database. Creating the MyFlix database from the MyFlix ER model Step 1) Open ER model of MyFlix database Open the ER model of MyFlix database that you created in earlier tutorial. Step 2) Select forward engineer Click on the database menu. Select forward engineer

Step 3) Connection options The next window, allows you to connect to an instance of MySQL server. Click on the stored connection drop down list and select local host. Click Execute

Step 4) Select the options shown below Select the options shown below in the wizard that appears. Click next

Step 5) Keep the selections default and click Next The next screen shows the summary of objects in our EER diagram. Our MyFlix DB has 5 tables. Keep the selections default and click Next.

Step 6) Review the SQL script The window shown below appears. This window allows you to preview the SQL script to create our database. We can save the scripts to a *.sql” file or copy the scripts to the clipboard. Click on next button

Step 7) Commit Progress The window shown below appears after successfully creating the database on the selected MySQL server instance.

Summary

	Creating a database involves translating the logical database design model into the physical database.

	MySQL supports a number of data types for numeric, dates and strings values.

	CREATE DATABASE command is used to create a database

	CREATE TABLE command is used to create tables in a database

	MySQL workbench supports forward engineering which involves automatically generating SQL scripts from the logical database model that can be executed to create the physical database

The Database along with Dummy Data is attached. We will be using this DB for all our further tutorials. Simple import the DB in MySQL Workbench to get started Click Here To Download MyFlixDB