Y
yj3385
Unregistered / Unconfirmed
GUEST, unregistred user!
存储过程式为:
Create proc aa
@aa Varchar(20)
as
select * from table where bb in ('1','2')
问题是我如何用传过来参数来替换'1','2'
而变成select * from table where bb in (参数名)
Create proc aa
@aa Varchar(20)
as
select * from table where bb in ('1','2')
问题是我如何用传过来参数来替换'1','2'
而变成select * from table where bb in (参数名)