Which SQL statement may be used to create a table?
A CREATE TABLE statement defines each column with its name followed by a data type. INT and VARCHAR are SQL data types, so the definition with column1 INT and column2 VARCHAR follows the required column-definition structure.
INT
VARCHAR
column1 INT
column2 VARCHAR
Community Discussion