That particular behavior seems to be a bug in MySQL, and it only affects BEFORE INSERT triggers, while BEFORE UPDATE triggers behave correctly.
The standard (as linked in question comments) certainly doesn't spell it out explicitly, but it's definitely implied:
For each state change SCi,j in TECi, the BEFORE triggers activated by SCi,j are executed before any of their
triggering events take effect. When those triggering events have taken effect, any AFTER triggers activated by
the state changes of TECi are executed.
A NOT NULL error should be part of an INSERT or UPDATE (i.e. the triggering event). The standard should not need to specify this. There is absolutely no point to pre-emptively checking constraints on a set of changes which is not final because your BEFORE trigger is capable of both resolving errors and introducing new ones.
SUMMARY: It really isn't up to the DB vendor because checking constraints after a before trigger is always necessary.
beforetriggers. That allows thebeforetrigger to change the values such that they are no longer not null. – Shannon Severance Nov 21 '11 at 23:57Instead Of Trigger Entered ,Check NULL constraint, Unique constraints, check constraints, FK, After Trigger, Instead Of Trigger Exitedfrom testing I did to answer this question – Martin Smith Nov 23 '11 at 9:04BEFORE TRIGGER(surely, if RMDS supports it) vs constraints. – a1ex07 Nov 23 '11 at 17:11