MySQL Forums
Forum List  »  Triggers

Re: How to check wether Trigger exists or not
Posted by: Bob Field
Date: March 24, 2006 09:25AM

USE dbname;

SHOW TRIGGERS;

SELECT routine_name, routine_type
FROM information_schema
WHERE routine_schema='dbname';

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: How to check wether Trigger exists or not
5523
March 24, 2006 09:25AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.