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