Table
CREATE TABLE employees (
id INT PRIMARY KEY,
first_name VARCHAR(50),
last_name VARCHAR(50),
birth_date DATE,
hire_date DATE,
salary DECIMAL(10, 2)
); To create a new table, you use the CREATE TABLE statement followed by the table name and a definition of its columns and their data types.
Semantic portal