请大家指教,调用存储过程时报警,说存储过程没有参数!
存储过程是这样写的:
create proc KuCun_search
as
declare @myMH table //表里有一个字段
(商品号 char(20))
select 商品号,数量 from KuCun where 商品号 in (select 商品号 from @myMH)
以上是存储过程,有个表变量,
------解决方案--------------------
sp_help 存储过程名
看看是否有参数?按提示应该是有参数的
------解决方案--------------------SQL code
create proc KuCun_search
(
@商品号s VARCHAR(1000) = ''
)
as
select 商品号,数量 from KuCun where CHARINDEX(',' + 商品号 + ',',',' + @商品号s + ',') > 0
GO
EXEC KuCun_search 'A001,A002,A003'