To see the table structure, which of the following SQL commands is issued?

To see the table structure, which of the following SQL commands is issued? Correct Answer DESCRIBE tbl_name

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.

Related Questions