Create Example
To create a table in an existing database, the CREATE TABLE
statement is used. You can create an entirely new table or a new table from an existing table using this statement. Let's have a look at its syntax first, and then we will implement it.
xxxxxxxxxx
CREATE TABLE TableName(column1Name dataType,
column2Name dataType,
column3Name dataType,
columnNName dataType);
OUTPUT
:001 > Cmd/Ctrl-Enter to run, Cmd/Ctrl-/ to comment