DROP TRIGGER - remove a trigger
DROP TRIGGER name ON table [ CASCADE | RESTRICT ]
DROP TRIGGER will remove an existing trigger definition. To execute this command, the current user must be the owner of the table for which the trigger is defined.
Destroy the trigger if_dist_exists on the table films:
DROP TRIGGER if_dist_exists ON films;
The DROP TRIGGER statement in PostgreSQL is incompatible with the SQL standard. In the SQL standard, trigger names are not local to tables, so the command is simply DROP TRIGGER name.
Закладки на сайте Проследить за страницей |
Created 1996-2024 by Maxim Chirkov Добавить, Поддержать, Вебмастеру |