1.

Which keyword suppresses errors?(a) SUPPRESS(b) STOP(c) PREVENT(d) IGNORE

Answer» The correct answer is (d) IGNORE

To elaborate: In MySQL, to suppress errors, IGNORE keyword is used with INSERT or UPDATE statements. With the IGNORE clause, statements that would result in an error due to invalid values result only in a warning.


Discussion

No Comment Found