Google News
logo
MySQL - Quiz(MCQ)
To see the table structure, which of the following SQL commands is issued?
A)
VIEW tbl_name
B)
SELECT tbl_name
C)
DESCRIBE tbl_name
D)
SELECT TABLE tbl_name

Correct Answer :   DESCRIBE tbl_name


Explanation : 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.

Advertisement