我的存储过程不起作用,我收到一个错误:
消息 102,级别 15,状态 1,过程 SP_HUGO_INSRTGAME,第 4 行
“@firstName”附近的语法不正确。
消息 137,级别 15,状态 1,过程 SP_HUGO_INSRTGAME,第 12 行
必须声明标量变量“@StudentFirstName”。
消息 102,级别 15,状态 1,过程 SP_HUGO_INSRTGAME,第 13 行
“值”附近的语法不正确。
这是我的存储过程:
Create Procedure SP_HUGO_INSRTGAME
(
@lastName as nvarchar(200)
@firstName as nvarchar(200)
@email as nvarchar(200)
@StudentFirstName INT
)
As
Begin
SET @StudentFirstName = 'insert into tbl_hugo_user (user_email, first_name, last_name, confidence, inspire, creativity, bonus_q ) values (@email, @firstName, @lastName, 0, 0, 0, 0); SELECT SCOPE_IDENTITY() ';
insert into tbl_hugo_game (user_hugo_Id) value (@StudentFirstName )
End