Home » MYSQL » Mysql Compound Statements » Question
  1. To see the table structure which command is issued?
    1. DESCRIBE tbl_name;
    2. SELECT tbl_name;
    3. SELECT TABLE tbl_name;
    4. VIEW tbl_name;
    5. None of these
Correct Option: A

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.