Google News
logo
MySQL - Quiz(MCQ)
Which mode is used to turn on strict mode and all of the additional restrictions?
A)
TRADITIONAL
B)
STRICT_ALL_TABLES
C)
ERROR_FOR_DIVISION_BY_ZERO
D)
ERROR_WHEN_DIVIDE_BY_ZERO

Correct Answer :   TRADITIONAL


Explanation : The ‘TRADITIONAL’ mode is used to enable the strict mode and all of the additional restrictions. It is done by the command SET sql_mod = ‘TRADITIONAL’; The other SQL modes have other functions.

Advertisement