SQL Server:如何获取我插入的行的值?
我的 SQL Server 表除了其他列之外还包含这些列。
将 IdentitySpecification 设置为 True 的 AutoID 和默认值为 (newid()) 的 GuidKey
AutoID GuidKey
1 f4rc-erdd
2 gedd-rrds
有没有办法从插入的行中获取 GuidKey?
我需要像 Scope_Identity() 这样的东西,不同之处在于我不想获取 AutoID 的内容,而是获取 GuidKey 列。
My SQL Server table has, between other, these columns.
AutoID which has IdentitySpecification set to True and GuidKey which has the default value of (newid())
AutoID GuidKey
1 f4rc-erdd
2 gedd-rrds
Is there any way of getting the GuidKey from the row inserted?
I need something like the Scope_Identity(), with the difference that i don't want to get the content of AutoID, but the GuidKey column.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
SQL Server 2005/2008
Sql Server 2005/2008
当然:
Sure:
您可以执行以下操作:
这会将插入的 GuidKey 插入到 @TempTable 中。然后您可以从该表中提取该值。
You can do the following:
This will insert the inserted GuidKey into @TempTable. You can then pull the value from that table.
对于
uniqueidentifier
,我执行如下操作:然后我在插入语句中使用
@ID
。最后我使用 SELECT @ID 或 RETURN @ID 返回值For the
uniqueidentifier
i do as follows:Then i use the
@ID
in my insert statement. Finally i return the value usingSELECT @ID
orRETURN @ID