时间:2021-07-01 10:21:17 帮助过:2人阅读
RENAME TO new_name;
?
ALTER TRIGGER last_name_changes ON employees
RENAME TO log_last_name_changes;
?
ALTER TABLE table_name
DISABLE TRIGGER trigger_name | ALL
You specify the trigger name after the?DISABLE TRIGGER?clause to disable a particular trigger. To disable all triggers associated with a table, you use?ALL?instead of a particular trigger name.
DROP TRIGGER [IF EXISTS] trigger_name ON table_name;
Postgresql流水帐(第七天):Trigger
标签: