MySQL Forums
Forum List  »  Triggers

Re: How to check wether Trigger exists or not
Posted by: Roland Bouman
Date: April 03, 2006 09:04AM

why not:

select *
from information_schema.triggers
where trigger_schema = <database name or else schema() for current database>
and trigger_name = <trigger name>

?

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: How to check wether Trigger exists or not
3924
April 03, 2006 09:04AM


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.