InterviewSolution
Saved Bookmarks
| 1. |
Which mode prevents entry of the ‘zero’ date value in strict mode?(a) SUPPRESS(b) NO_ZERO_DATE(c) PREVENT(d) NO_ZERO_IN_DATE |
|
Answer» Right choice is (b) NO_ZERO_DATE For explanation: The ‘NO_ZERO_DATE’ prevents the entry of the ‘zero’ date value in strict mode. In MySQL, to suppress errors, the IGNORE keyword is used with INSERT or UPDATE statements. |
|