Google News
logo
MySQL - Quiz(MCQ)
What is the command to see the warning messages?
A)
DISP WARNING
B)
SHOW WARNINGS
C)
DISP WARNINGS
D)
DISPLAY WARNINGS

Correct Answer :   SHOW WARNINGS


Explanation : In MySQL, the default value conversions are reported as warnings for INSERT, REPLACE and UPDATE statements. The SHOW WARNINGS command is used after executing one of those statements to see the warning messages.

Advertisement