获取插入的最后一行

发布于 2024-11-10 05:01:29 字数 142 浏览 0 评论 0原文

我有一个将记录插入差异表的触发器,但我需要获取插入触发器内的记录,我该怎么做?没有标识字段,只有由插入表上的单独触发器生成的 account_nbr。

我不知道是否有sql语句来检索刚刚插入的行。

数据库是Sql Server 2008。

I have a trigger that inserts a record into a diff table but I need to get that record that was inserted inside the trigger, how do I do it? There is no identity field, only account_nbr that is generated by a separate trigger on the insert table.

I don't know if there is sql statements to retrieve a row that was just inserted.

DB is Sql Server 2008.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

有木有妳兜一样 2024-11-17 05:01:29

OUTPUT 子句将返回刚刚插入的记录: http://msdn .microsoft.com/en-us/library/ms177564.aspx

如果您指的是在调用触发器之前插入的行,则它们位于 inserted 伪-桌子。

The OUTPUT clause will give you back the records you have just inserted: http://msdn.microsoft.com/en-us/library/ms177564.aspx

If you mean the rows inserted before the trigger invoked, they are in the inserted pseudo-table.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文