Creating Tables in MySql

Tables are the container for all the data that relational database guards and they are the basic structure of the databases. Tables are divided in Column and Rows. Each row will represent a piece of data and it will be referenced by the column(header) tab1 Example : -we will create a basic table that will store a name and an email.

 CREATE TABLE TEST(
            NAME varchar(10),
            EMAIL varchar(10)
                );
-so here it is we have created a table called TEST. This is how we create a table using SQL language , in the next tutorial we will see how we can insert and store data into a table