加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 站长学院 > MsSql教程 > 正文

sql – 从存储过程输出最后插入的主键值

发布时间:2020-12-12 07:50:01 所属栏目:MsSql教程 来源:网络整理
导读:我对这个问题有点困难,因为我不确定如何在SQL Server中执行此操作. 基本上,我想在数据库中插入一个新行,获取刚刚插入的PK值(相同的查询)并将其输出回任何称为存储过程的行: CREATE PROCEDURE Users_Insert -- Add the parameters for the stored procedure h
我对这个问题有点困难,因为我不确定如何在SQL Server中执行此操作.

基本上,我想在数据库中插入一个新行,获取刚刚插入的PK值(相同的查询)并将其输出回任何称为存储过程的行:

CREATE PROCEDURE Users_Insert
    -- Add the parameters for the stored procedure here
    @userid int output,@name varchar(50),@surname varchar(50),@email varchar(200),@password varchar(50),@location varchar(50)
AS
BEGIN
    -- SET NOCOUNT ON added to prevent extra result sets from
    -- interfering with SELECT statements.
    SET NOCOUNT ON;

    -- Insert statements for procedure here
    insert into Users(FirstName,LastName,Email,Password,Location)
    values(@name,@surname,@email,@password,@location);
    GO
    @userid = @@IDENTITY;
END

我在MySQL中完成了以下操作:

CREATE PROCEDURE Users_Insert(@userid int output,@location varchar(50)
BEGIN

    insert into Users(FirstName,@location);

    set @userid = last_insert_id();
END

SQL Server给我一个错误:

Msg 102,Level 15,State 1,Procedure Users_Insert,Line 18
Incorrect syntax near ‘@userid’.

坦率地说,我不确定我是否正确地声明了输出参数,有人能提出建议吗?

解决方法

您需要将值分配给@userid!另外,我建议使用SCOPE_IDENTITY()而不是@@ IDENTITY:
CREATE PROCEDURE Users_Insert
    -- Add the parameters for the stored procedure here
    @userid int output,@location);

    -- make an actual **assignment** here...
    SELECT @userid = SCOPE_IDENTITY();
END

See this blog post for an explanation as to WHY you should use SCOPE_IDENTITY over @@IDENTITY

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读