In which table of INFORMATION_SCHEMA is the information about table index characteristics stored?
A. FILES
B. STATISTICS
C. SCHEMATA
D. VIEWS
Answer: Option B
Solution (By Examveda Team)
This question is asking you about where MySQL stores information about table indexes. Indexes are like a table of contents for your data, making it faster to find specific rows.Let's look at the options:
Option A: FILES - This table stores information about the physical files of your database. It doesn't hold details about indexes.
Option B: STATISTICS - This is the correct answer! This table stores various statistics about your tables, including information about indexes.
Option C: SCHEMATA - This table describes the schemas (structure) of your databases. It doesn't store details about indexes.
Option D: VIEWS - Views are virtual tables based on other tables. They don't directly contain information about indexes.
Therefore, the answer is Option B: STATISTICS.
Related Questions on MySQL Miscellaneous
How is communication established with MySQL?
A. SQL
B. Network calls
C. A programming language like C++
D. APIs
Which type of database management system is MySQL?
A. Object-oriented
B. Hierarchical
C. Relational
D. Network

Join The Discussion