下午好,
我编写了一个非常基本的存储过程,用于将 QuestionText 和 QuestionStatus 插入 Questions 表中,并且 QuestionID int Primary Key 设置为具有标识。
语法如下:
CREATE PROCEDURE InsertNewQuestion
-- Add the parameters for the stored procedure here
@QuestionText varchar(200), @QuestionStatus bit
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 Questions
(QuestionText,QuestionStatus)
Values
(@QuestionText),(@QuestionStatus)
END
GO
当我执行存储过程时,我收到以下错误:
INSERT 语句中的列多于 VALUES 子句中指定的值。VALUES 子句中的值数必须与 INSERT 语句中指定的列数相匹配。
正确插入记录并允许 QuestionID 在每次插入时自动递增的正确语法是什么?
非常感谢您的帮助和指导。
更新的存储过程语法