mysql 使用 FIND_IN_SET 來查詢資料

來源:互聯網
上載者:User

標籤:mit   ring   資料查詢   英文   組合   使用   sele   code   mysq   

mysql中find_in_set函數很有意思,它的功能是尋找以英文逗號隔開的值,我們可以將資料存放區類似為1,2,3,4格式。今天我們就來看看在thinkphp中怎樣正確地使用find_in_set函數進行資料查詢。

在ThinkPHP中, 我們可以使用數組的形式組合查詢條件,對於組裝find_in_set時,可以有如下寫法:

$map[‘_string‘]="FIND_IN_SET(1,tid)";//tid為表欄位

還可以組合多個find_in_set查詢一起使用:

$map[‘_string‘] = "FIND_IN_SET(1,tid) OR FIND_IN_SET(2,tid) OR FIND_IN_SET(3,tid) OR FIND_IN_SET(4,tid)";

最後產生的sql語句如下所示:

SELECT `id`,`title`,`enname`,`futitle`,`picture`,`content` FROM `tp_content` WHERE `is_recover` = 0 AND `cityid` = 2 AND ( `cate_id` = ‘1‘ OR `cate_pid` = ‘1‘ ) AND ( FIND_IN_SET(1,tid) OR FIND_IN_SET(2,tid) OR FIND_IN_SET(3,tid) OR FIND_IN_SET(4,tid) )  ORDER BY add_time desc,id desc LIMIT 0,10

使用 FIND_IN_SET 可以省下用php切成數組然後在進行匹配的麻煩

mysql 使用 FIND_IN_SET 來查詢資料

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.