InterviewSolution
Saved Bookmarks
| 1. |
To perform analysis of key values by the server, the statement used is __________(a) ANALYZE KEYS(b) ANALYZE TABLE(c) PERFORM ANALYSIS(d) PERFORM TABLE ANALYSIS |
|
Answer» Right choice is (b) ANALYZE TABLE Easy 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. |
|