I can't find out how to view the TRIGGER in XAMPP phpmyadmin? can somebody help me with this? where I can find the trigger code in phpmyadmin?
thanks.
I can't find out how to view the TRIGGER in XAMPP phpmyadmin? can somebody help me with this? where I can find the trigger code in phpmyadmin?
thanks.
You can edit trigers on Triggers
tab in database. For example see demo server.
If you want to display existing TRIGGERS (without editing them), you can enter one of the following commands in phpMyAdmin's SQL tab:
`SHOW TRIGGERS`
or
SELECT * from information_schema.triggers WHERE trigger_schema = 'your_db'