I have wrote a stored procedure which like
CREATE PROCEDURE P1
(
@par1 string,
)
as
select * from table1 where column1 in (@par1)
So, here the Value which i send to the parameter is "value1,value2" like.
Its not possible for me to pass the parameter.
Could you suggest how to do this with the same way or different way.
Thanks in advance,
Regards,
Sivakumar.kr.
Edit/Delete Message




Reply With Quote