Select a, b, c from table where a in (1, 2, 3)
What if the list is in a column?
I try this will error:
Select a, b, c from a in b
Sorry for not clear my question.
It's not about join or in (select b from table)
Column b type is nvarchar, data is a list, like this '1,2,5'
Column a type is int.