SQL CREATE TABLE Statement
The CREATE TABLE statement in SQL is used to create a new table in the database. It allows you to define the table's columns, data types, and any constraints.
Syntax
CREATE TABLE table_name (
column1 datatype constraint,
column2 datatype constraint,
...
);
Video Explanation
