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)
);