0

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

我在这里做错了什么?

感谢您的帮助哦,强大的 stackoverflow 蜂巢思维!

存储过程如下:

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
4

1 回答 1

11

您没有在 INSERT 中指定表名。

于 2012-05-10T14:20:57.120 回答