这个存储过程插入数据有什么问题?

时间:2012-05-10 14:19:38

标签: sql-server

我正在尝试创建一个插入数据库表的存储过程,但它不会运行。调试器说'('附近有错误的语法,但我发誓代码是正确的......

我在这里做错了什么?

感谢你的帮助哦强大的stackoverflow hive介意!

存储过程如下:

Create Proc InsertStaffMember
 (@fname varchar(50), 
  @lname varchar(50), 
  @initials varchar(3), 
  @phone varchar(20), 
  @phoneext varchar(10), 
  @stafftype char(1))
AS
    Insert into 
    (t09FirstName, t09LastName, t09Int, t09Phone, t09PhoneExt, t09Type)
    Values
    (@fname, @lname, @initials, @phone, @phoneext, @stafftype)
GO

1 个答案:

答案 0 :(得分:11)

您没有在INSERT中指定表名。