表a (id,city_id)
 id    city_id
1       1
2       1,2,3
3       1,11,34,2
4       1,111,34,56
请问 想查询含有11的记录sql语句可以实现吗
我试过
select id,city_id from a where '11'in(city_id)
select id,city_id from a where city_id like '11,%' or city_id like '%,11' or city_id like '%,11,%' 这个可以查询,不知道还有没有更好的方法