InterviewSolution
Saved Bookmarks
| 1. |
Which statement is used to determine the storage engine for individual tables?(a) SHOW STATUS OF TABLE(b) SHOW STATUS TABLE(c) SHOW TABLE STATUS(d) SHOW DEFAULT STATUS |
|
Answer» Correct option is (c) SHOW TABLE STATUS To elaborate: 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. |
|