Normally if we try to insert data that violates a CHECK
constraint in MySQL, we get an error, and the whole INSERT
operation fails (including any conforming rows).
But it’s possible to change this, so that any conforming rows are inserted, and only the non-conforming rows are skipped.
We can do this by using the IGNORE
clause.