一個MySql查詢問題
問題描述
數據如下:
idcol1a,b,d 2a,b,c
我的查詢條件:
col=(a,b) 要求查到id為1,2的兩行
col=(a,d) 查到id為1的行
col=(a,c) 查到id為2的行
col=(a) 查到id為1,2的兩行
請教下大家有沒有什么方法呢?
問題解答
回答1:以第一個為例。
select * from tablename where find_in_set(’a’, col)>0 and find_in_set(’b’, col)>0;回答2:
1.SELECT * FROM test_findisset where find_in_set(’a’,col) and find_in_set(’a’,col) and find_in_set(’b’,col)
2.SELECT * FROM test_findisset where find_in_set(’a’,col) and find_in_set(’a’,col) and find_in_set(’d’,col)
3.SELECT * FROM test_findisset where find_in_set(’a’,col) and find_in_set(’a’,col) and find_in_set(’c’,col)
4.SELECT * FROM test_findisset where find_in_set(’a’,col) and find_in_set(’a’,col)
相關文章:
1. javascript - 打算寫一個c++的node圖像處理模塊,有沒有推薦的c++圖片處理庫?2. 運行python程序時出現“應用程序發生異常”的內存錯誤?3. css3 讓圖片變成灰色(filter),但針對IE11瀏覽器無效4. android - Genymotion 模擬器可以做屏幕適配檢測嗎?5. macos - 無法source activate python276. java - butterknife怎么綁定多個view7. css - 移動端 盒子內加overflow-y:scroll后 字體會變大8. java - 同步/異步與阻塞/非阻塞之間的差異具體是什么?9. html5 - 前端面試碰到了一個緩存數據的問題,來論壇上請教一下10. PHPExcel表格導入數據庫怎么導入

網公網安備