I have a table with with column location with values
row1: sector A, sector B, Sector c
row 2: sector B, sector f, Sector A
row 3: sector f
No I am looking for the sql query to search from these rows with comma separated string say I can search with Sector A, sector f in that case row 1 ,row2, row 3 values should print as Sector A is in row 1, row2 and sector f is in row 3
I am trying something like this but matches the exact string only ...
SELECT id , name FROM tb1 "+
" where Charindex(','+cast(location as varchar(8000))+',',',"+loc+",') > 0
and loc is sector A,sector f