mysql sql 判斷一個字串是否存在另一字串中

來源:互聯網
上載者:User

mysql教程 sql 判斷一個字串是否存在另一字串中

locate(substr,str,pos)

返回子串substr在字串str第一個出現的位置,如果substr不是在str裡面,返回0.

mysql> select locate('bar', 'foobarbar');
            -> 4
mysql> select locate('xbar', 'foobar');
            -> 0

locate(substr,str,pos)
返回子串substr在字串str第一個出現的位置,從位置pos開始。如果substr不是在str裡面,返回0。

mysql> select locate('bar', 'foobarbar',5);
            -> 7

下面看個執行個體
*/

$cityid=11;
$sql ="select * from tbname where locate('$cityid',cityid)";

//cityid 是資料庫教程欄位名,儲存資料如 11,12,11,41,25,33這類資料。如果我們要利用not in sql in是實現不的哦。
//註明,本站原創教程轉載註明來自http://www.111cn.nethttp://www.111cn.net/database/database.html 否則必究!

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.