删除触发器中的行 (PostgreSQL)
我有一个更新触发器,应该删除行OLD*,但我不知道表结构。 所以我尝试使用 information_schema 来获取列名称,但它真的很慢。
是否可以在不了解表结构的情况下执行删除操作?
UPD: 触发器应该接受任何表的行,因此触发器函数在调用之前无法了解有关该表的任何信息。
UPD2:
这对我来说效果很好:
EXECUTE 'DELETE FROM ' || tablename || ' WHERE ctid=$1' USING OLD.ctid;
I've got a trigger on update, that should delete the row OLD*, but I don't know the table structure.
So I've tried using information_schema to grab columns names, but it's really slow.
Is it possible to perform the deletion without knowledge about table structure?
UPD:
Trigger should accept row of any table, so trigger function cannot know anything about the table before it will be invoked.
UPD2:
This works well for me:
EXECUTE 'DELETE FROM ' || tablename || ' WHERE ctid=$1' USING OLD.ctid;
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论