Home » MYSQL » Mysql Setup » Question
  1. What does ‘Student ’ & ‘name’ specify?
    CREATE TABLE Student (name);
    1. column specs and table name
    2. table name and number of rows
    3. table name and column specs
    4. table name and number of columns
    5. 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.



Your comments will be displayed only after manual approval.