Home » MYSQL » Mysql Setup » Question
  1. To see the table structure, which of the following commands is issued?
    1. VIEW tbl_name
    2. SELECT TABLE tbl_name
    3. SELECT tbl_name
    4. DESCRIBE tbl_name
    5. None of these
Correct Option: D

The ‘DESCRIBE’ command is issued to see the structure of the table ‘tbl_name’. It shows the structure in the format: Field-Type-Null-Key-Default-Extra. The ‘VIEW’ and ‘SELECT’ commands are used to see the contents of the table.



Your comments will be displayed only after manual approval.