Google News
logo
MySQL - Quiz(MCQ)
What is used to perform an analysis of key values by the server?
A)
ANALYZE KEYS
B)
PERFORM ANALYSIS
C)
ANALYZE TABLE
D)
PERFORM TABLE ANALYSIS

Correct Answer :   ANALYZE TABLE


Explanation : In MySQL, for the MyISAM and InnoDB tables, the server can be told to perform an analysis of key values by issuing the ANALYZE TABLE statement. It helps in knowing about query optimization.

Advertisement