InterviewSolution
Saved Bookmarks
| 1. |
Which mode prevents MySQL to perform full checking of date parts?(a) PREVENT_DATE_CHECK(b) STOP_DATES_CHECK(c) ALLOW_DATES_INVALID(d) ALLOW_INVALID_DATES |
|
Answer» The correct answer is (d) ALLOW_INVALID_DATES To elaborate: In MySQL, it is also possible to selectively weaken the strict mode in some places. If the ALLOW_INVALID_DATES SQL mode is enabled, MySQL doesn’t perform full checking of the date parts. |
|