C-06-Q058mediumsingle_mcq
What is the correct syntax to create a table?
What is the correct syntax to create a table?
- a
CREATE TABLE table_name (column_name column_type, ...); - b
CREATE TABLE (column_name) table_name; - c
TABLE CREATE table_name column_type; - d
CREATE (table_name) column_type;