InterviewSolution
Saved Bookmarks
| 1. |
Which table in INFORMATION_SCHEMA stores information about storage engines and server plugins?(a) ENGINES, PLUGINS(b) FILES, PLUGINS(c) ENGINES, FILES(d) PLUGINS, STATISTICSThe question was posed to me during an online interview.This key question is from Obtaining Database Metadata topic in division Using SQL to Manage Data of MySQL |
|
Answer» CORRECT option is (a) ENGINES, PLUGINS The best I can EXPLAIN: The ‘INFORMATION_SCHEMA’ is a very useful in MySQL. It has many tables each serving its INDIVIDUAL purpose. The storage ENGINE information is stored in ENGINES and PLUGIN information in PLUGINS. |
|