Google News
logo
MySQL - Quiz(MCQ)
Which statement is used to check how MySQL would execute a SELECT query?
A)
EXPLAIN
B)
TELL
C)
SHOW
D)
DISPLAY

Correct Answer :   EXPLAIN


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.

Advertisement