tHE VIDEO explains the structure of creating a table
The CREATE TABLE statement allows you to create a new table in a database.
CREATE TABLE table_name(
column_1_definition datatype,
column_2_definition datatype,
...,
table_constraints
) ;