I am trying to execute a query in c#,the query as
select Id from employee where name in (@name)
i am try to passing 3 cases
1.@name='sa'
2.@name='as,ab'
3.@name='ad'
and the output am expecting
1.id=1
2.id=2
3.id=3
my table employee value contains ,