CREATE TABLE in SQL
The CREATE TABLE statement in SQL is used to create a new table in a database. You define the table structure, including the column names, data types, and any constraints.
Syntax for CREATE TABLE
CREATE TABLE table_name (
column1 datatype constr...
codewithsimon.hashnode.dev3 min read