RE: What is the maximum number of triggers, can apply to a single table
Question may be confusing. The 3*2*2 12 is the number of different types of triggers.
I've seen more than 25 triggers on a single table before with multiple before update triggers and multiple before insert triggers. The issue with multiple triggers is there is no guarantee of the order they get executed in so there can be timing issues in this situation. When this happens you have to combine the two triggers so execution order can be controlled.