Why does this not work?
select * from Menus where 'g' IN (Menus.menuSecurity)
Explanation: Menus.menuSecurity contains an nvarchar field with this data - a,b,c,d,e,f,g,h
I get 0 results. If I remove everything except the letter g I get a result of 1 record as expected.
select * from Menus where 'g' IN (Menus.menuSecurity)
Explanation: Menus.menuSecurity contains an nvarchar field with this data - a,b,c,d,e,f,g,h
I get 0 results. If I remove everything except the letter g I get a result of 1 record as expected.