I have a field having comma seprated values value like this : 192,193,195,196,197,198,199,200
I want to perform a exact search Like if i search for 92 then record having above should not appear in result. But if i search for 192 then only above record should appear.
I have tried LIKE query but not seems to work.
SELECT * FROM TABLE_NAME WHERE field_name LIKE '92'
SELECT * FROM TABLE_NAME WHERE field_name LIKE '%92%'
But above query returns record having value like 192 as well.
Any help will be appreciated.