Syntax:

CREATE TABLE table_name (
column1 datatype,
column2 datatype,
column3 datatype,
….
);

Example:

CREATE TABLE customers (
customer_id INT,
customer_name VARCHAR(50),
customer_address VARCHAR(255),
customer_email VARCHAR(255)
);

Leave a Reply

Your email address will not be published. Required fields are marked *