資料如下:
id col
1 a,b,d
2 a,b,c
我的查詢條件:
col=(a,b) 要求查到id為1,2的兩行
col=(a,d) 查到id為1的行
col=(a,c) 查到id為2的行
col=(a) 查到id為1,2的兩行
請教下大家有沒有什麼方法呢?
大家讲道理2017-05-18 10:48:37
以第一個為例。
select * from tablename where find_in_set('a', col)>0 and find_in_set('b', col)>0;
阿神2017-05-18 10:48:37
1.SELECT * FROM test_findisset where find_in_set('a',col) 和 find_in_set('a',col) 和 find_in_set('b',col)
2.SELECT * FROM test_findisset where find_in_set('a',col) 和 find_in_set('a',col) 和 find_in_set('d',col)
3.SELECT * FROM test_findisset where find_in_set('a',col) 和 find_in_set('a',col) 和 find_in_set('c',col)
4.SELECT * FROM test_findisset where find_in_set('a',col) 和 find_in_set('a',col)