Create TABLE
The CREATE TABLE statement allows you to create and define a table.The basic syntax for a CREATE TABLE statement is: CREATE TABLE table_name ( column1 datatype null/not null, column2 datatype PRIMARY KEY, column3 datatype PRIMARY KEY, … );Each column must have a datatype. The column should either be defined as “null” or “not null” and […]
Recent Comments