Google News
logo
MySQL - Quiz(MCQ)
Which mode is a shorthand for 'both strict modes plus a bunch of other restrictions'?
A)
STRICT_ALL_TABLES
B)
STRICT_TRANS_TABLES
C)
TRADITIONAL
D)
ERROR_WHEN_DIVIDE_BY_ZERO

Correct Answer :   TRADITIONAL


Explanation : In MySQL, the ‘TRADITIONAL’ mode is used to enable the strict mode. It also enables all of the additional restrictions by the command ‘SET sql_mod = ‘TRADITIONAL” The other SQL modes have other functions.

Advertisement