SQL Server:如何获取我插入的行的值?

发布于 2024-08-15 10:18:37 字数 333 浏览 5 评论 0原文

我的 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 技术交流群。

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

发布评论

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

评论(4

失而复得 2024-08-22 10:18:37

SQL Server 2005/2008

INSERT INTO myTable (SomeColumn)
    OUTPUT INSERTED.GuidKEY
VALUES ('SomeData')

Sql Server 2005/2008

INSERT INTO myTable (SomeColumn)
    OUTPUT INSERTED.GuidKEY
VALUES ('SomeData')
丶视觉 2024-08-22 10:18:37

当然:

 SELECT GuidKEy FROM [Table] WHERE AutoID= scope_identity()

Sure:

 SELECT GuidKEy FROM [Table] WHERE AutoID= scope_identity()
挖个坑埋了你 2024-08-22 10:18:37

您可以执行以下操作:

DECLARE @TempTable TABLE (GuidKey UNIQUEIDENTIFIER)

INSERT INTO YourTable(Columns) 
  OUTPUT INSERTED.GuidKey INTO @TempTable(GuidKey) 
  VALUES(YourVALUES)

这会将插入的 GuidKey 插入到 @TempTable 中。然后您可以从该表中提取该值。

You can do the following:

DECLARE @TempTable TABLE (GuidKey UNIQUEIDENTIFIER)

INSERT INTO YourTable(Columns) 
  OUTPUT INSERTED.GuidKey INTO @TempTable(GuidKey) 
  VALUES(YourVALUES)

This will insert the inserted GuidKey into @TempTable. You can then pull the value from that table.

一抹微笑 2024-08-22 10:18:37

对于uniqueidentifier,我执行如下操作:

DECLARE @ID uniqueidentifier
SET @ID = newId()

...

然后我在插入语句中使用@ID。最后我使用 SELECT @ID 或 RETURN @ID 返回值

For the uniqueidentifier i do as follows:

DECLARE @ID uniqueidentifier
SET @ID = newId()

...

Then i use the @ID in my insert statement. Finally i return the value using SELECT @ID or RETURN @ID

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