0

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.

ChocoMartin
  • 111
  • 1
  • 3
  • 12

2 Answers2

2

You can edit trigers on Triggers tab in database. For example see demo server.

Michal Čihař
  • 9,799
  • 6
  • 49
  • 87
0

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'
OuzoPower
  • 230
  • 2
  • 11
  • Note that the answer the original post by ChocoMartin is a duplicate of [link](https://stackoverflow.com/questions/5420812/how-can-i-find-all-the-db-trigger-in-mysql) where these answers were already provided. Unfortunately, I could not comment the original message. – OuzoPower Apr 11 '18 at 15:10