SQL Server:在存储过程中检索自动递增的ID? [英] SQL Server: Retrieve auto-incremented ID inside a stored procedure?

查看:90
本文介绍了SQL Server:在存储过程中检索自动递增的ID?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的数据库有一个父表,该表具有自动递增的主键标识"ID"和一个普通的"TIMESTAMP列".我有带有外键的子表,这些子表引用父"ID"列.

My database has a parent table with an auto-incrementing primary key identity 'ID', and a normal 'TIMESTAMP column'. I have child tables with a foreign key that refer to the parent 'ID' column.

我想编写一个存储过程,将一个新列插入到父数据库和子数据库中.如何将子"ID"列设置为等于新的自动递增的父"ID"列?这是否需要一个单独的:

I want to write a stored procedure that inserts a new column into both the parent and child databases. How would I set the child 'ID' column to equal the new auto-incremented parent 'ID' column? Does this require a separate:

SELECT TOP 1 * FROM PARENT_TABLE

还是有另一种方法?

推荐答案

您可以从SCOPE_IDENTITY()中检索它.例如:

You can retrieve it from SCOPE_IDENTITY(). For example:

declare @myid int
INSERT INTO table (field) VALUES ('value')
SELECT @myid = SCOPE_IDENTITY()

这篇关于SQL Server:在存储过程中检索自动递增的ID?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆