-
To see the table structure which command is issued?
-
- DESCRIBE tbl_name;
- SELECT tbl_name;
- SELECT TABLE tbl_name;
- VIEW tbl_name;
- 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.