如何为触发器中的列选择默认值?
我们实现了一些触发器,这些触发器在将插入数据提交到数据库之前对插入数据执行一些操作,并且当某些条件失败时,触发器应该选择相应列的默认值。
如何在触发器内执行它?
谢谢。 附言。我们使用 PostgreSQL,但其他 DBMS 的实现可能会给出提示。
We implement some triggers which perform some operations with insert data before committing them to the database and when some conditions fail the trigger should pick up the default value for corresponding column.
How to perform it inside the trigger?
Thank you.
PS. we work with PostgreSQL, but implementations with other DBMS may give a hint.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
NEW.colname = DEFAULT 就可以了。
NEW.colname = DEFAULT will do the trick.