Could you please help? I have one column with ID and in another table columne where are few IDs in one row separeted with ','
I need something like simple check whether ID is in column 2 or not ...something like:
Case When
Column1(123) like Column2(123,345,567)
Then 1
Else 0
END
...but this is not working.