-
To see the table structure, which of the following commands is issued?
-
- VIEW tbl_name
- SELECT TABLE tbl_name
- SELECT tbl_name
- DESCRIBE tbl_name
- 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.