A.4.7. |
Where are stored procedures stored? |
In the You can also use |
【vs】
A.5.6. |
Is there a way to view all triggers in a given database? |
Yes. You can obtain a listing of all triggers defined on database SELECT TRIGGER_NAME, EVENT_MANIPULATION, EVENT_OBJECT_TABLE, ACTION_STATEMENT
FROM INFORMATION_SCHEMA.TRIGGERS
WHERE TRIGGER_SCHEMA='
For more information about this table, see Section 24.29, “The INFORMATION_SCHEMA TRIGGERS Table”. You can also use the |
|
A.5.7. |
Where are triggers stored? |
Triggers are stored in |