Hi,
I have a string array.
Example:
string[] test =new string[3] {"abc,def", "ghy,spd", "xyz,uni"};
How can put this array in sql where clause:
My final output query should like this:
Select *
from tableName
where id in ('abc', 'def', 'ghy', 'spd', 'xyz', 'uni');
Thanks,
Darma