-
What does ‘Student ’ & ‘name’ specify?
CREATE TABLE Student (name);
-
- column specs and table name
- table name and number of rows
- table name and column specs
- table name and number of columns
- None of these
Correct Option: C
The ‘CREATE TABLE’ construct’s syntax is ‘CREATE TABLE tbl_name (column_specs)’. ‘tbl_name’ indicates the table name. ‘column_specs’ provides the specifications of the table attributes.