The show create trigger statement was introduced only in MySQL 5.1 does anyone know how I could get the original SQL (create) of the trigger in MySQL 5.0
I command show triggers works but it does not contain the create statement.
Cheers,
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Read the information from
Information_schema.triggerstable: trigger’s body and other options; then build CREATE TABLE yourself or write a program that would do it automatically.Also, you can use object visual editor in dbForge Studio for MySQL (free express edition) to view and edit triggers.