发新话题
打印

在存储过程中申明table类型出错

在存储过程中申明table类型出错

CREATE PROCEDURE deleb
@mytable table(e0 char(3),e1 char(8))
AS
insert into eb select * from @mytable
GO
检查语法出错
   Error 156: Incorrect syntax near the keyword 'table'.
   Must declare the variable '@mytable'.
请问Nothing,我错在哪?谢谢!

TOP

存储过程中使用table类型

@mytable table(e0 char(3),e1 char(3))
我不是已经申明@mytable是table(e0 char(3),e1 char(3)) 类型了吗?我不知道怎样在存储过程中使用table类型,你能不能给我举个例子,谢谢!

TOP

发新话题