当在 table1 中插入值时,触发在 table2 中插入值
我想编写触发器,当在表1中插入值时,必须在表2中添加相同的值。
I want to write trigger, when values are inserted in table1, same values must get added in table2.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这里的假设是 table2 和 table1 具有相同数量的具有兼容字段类型的列(当您使用隐式字段执行“选择星号”时需要这样做)。
如果您想要将插入到
table1
中的插入值,您可以使用 插入表(对于DELETE
和UPDATE
语句也删除)。The assumption here is that table2 and table1 have the same amount of columns with compatible field types (that is needed when you do a "select star" with implicit fields).
If you want to put inserted values that were inserted into
table1
, you can utilize the inserted table (and deleted as well forDELETE
andUPDATE
statements).