InterviewSolution
Saved Bookmarks
| 1. |
Which statement is used to check how MySQL would execute a SELECT query?(a) TELL(b) SHOW(c) DISPLAY(d) EXPLAIN |
|
Answer» Correct choice is (d) EXPLAIN The explanation: In MySQL, by issuing an EXPLAIN statement MySQL displays some information about how it would execute a SELECT query without actually executing it. It is prefixed with the query. |
|