InterviewSolution
Saved Bookmarks
| 1. |
Which statement is used to determine the storage engine for individual tables?(a) SHOW TABLE STATUS(b) SHOW DEFAULT STATUS(c) SHOW STATUS OF TABLE(d) SHOW STATUS TABLE |
|
Answer» Right choice is (a) SHOW TABLE STATUS The best I can explain: 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. |
|