Google News
logo
MySQL - Quiz(MCQ)
To check how MySQL would execute a SELECT query, which statement is used?
A)
TELL
B)
EXPLAIN
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