Google News
logo
MySQL - Quiz(MCQ)
Which statement is used to determine the storage engine for individual tables?
A)
SHOW STATUS TABLE
B)
SHOW TABLE STATUS
C)
SHOW STATUS OF TABLE
D)
SHOW DEFAULT STATUS

Correct Answer :   SHOW TABLE STATUS


Explanation : MySQL provides a method to determine the storage engine for each table with the ‘SHOW TABLE STATUS’ statement. The output of this statement is the name of the storage engine indicator.

Advertisement