pass IN Query in SQL Procedure not work
create procedure usp_get_item @sid varchar(100), @ccount int as select pid,count(*) from test where sid in(@sid) group by pid having count(*)=@ccount go
Refer below article.
© COPYRIGHT 2024 ASPSnippets.com ALL RIGHTS RESERVED.