What is SQL?
SQL stands for STRUCTURED QUERY LANGUAGE. We can communicate with database through SQL, a standard language for database.
How to create a TABLE?
Syntax: CREATE TABLE table_name
(
column_one_name type,
column_two_name type,
column_three_name type,
-------------------------,
-------------------------,
column_n_name type <----------------------- Don't use comma here.
); <-------------------Here is semicolon.
Here n=1, 2, 3, 4, ---------------------------------