Some DBMSs allow you to have multiple triggers for the same insert, update, or delete event at the same time. You can indicate the order in which each trigger within the group fires.
In the following example, a company is considering candidates for various positions, and must ensure that new employees are offered a salary that is within the range of others working in the same field, and less than their prospective manager.
create trigger tibTestSalry1 before insert order 1 on EMPLOYEE referencing new as new_ins for each row begin [Trigger code] end create trigger tibTestSalry2 before insert order 2 on EMPLOYEE begin [Trigger code] end