I have a comma delimited list in a column and I want to see if a number appears in it ie.
select * from table where 68 IN (staffID)
now it works if there is only one number in the col but as soon as more appear nothing is returned
I am sure I have this working somewhere before but now it seems beyond me! Obviously I am doing something wrong
Cheers
Tim
select * from table where 68 IN (staffID)
now it works if there is only one number in the col but as soon as more appear nothing is returned
I am sure I have this working somewhere before but now it seems beyond me! Obviously I am doing something wrong
Cheers
Tim