InterviewSolution
Saved Bookmarks
| 1. |
How do the STRICT_ALL_TABLES and STRICT_TRANS_TABLES mode values deal with bad data?(a) reject them(b) accept them(c) change them to the closest legal value and accept(d) change them to the closest legal value and reject |
|
Answer» Right option is (a) reject them Easiest explanation: ‘STRICT_ALL_TABLES’ and ‘STRICT_TRANS_TABLES’ are the MySQL server mode values that deal with bad data in a ‘strict’ manner. They do not make any change to the data. It is simply rejected. |
|