Mysql函數INSTR、LOCATE、POSITION VS LIKE

來源:互聯網
上載者:User

標籤:

Mysql 大家都會用這樣的語法:

SELECT `column` FROM `table` where `condition` like `%keyword%’

事實上,可以使用 locate 和 instr 這兩個函數來代替

SELECT `column` from `table` where locate(‘keyword’, `condition`)>0
或是 locate 的別名 position
SELECT `column` from `table` where position(‘keyword’ IN `condition`)

或是
SELECT `column` from `table` where instr(`condition`, ‘keyword’ )>0

locate、position 和 instr 的差別只是參數的位置不同,同時locate 多一個請始位置的參數外,兩者是一樣的。

速度上這三個比用 like 稍快了一點。

另付三個函數的說明:

  • INSTR(str,substr)

返回字串 str 中子字串的第一個出現位置。這和LOCATE()的雙參數形式相同,只是參數的順序被顛倒。

mysql> SELECT INSTR(‘foobarbar’, ‘bar’);

-> 4

mysql> SELECT INSTR(‘xbar’, ‘foobar’);

-> 0

這個函數支援多位元組字元,並且只有當至少有一個參數是二進位字串時區分大小寫。

  • LOCATE(substr,str) , LOCATE(substr,str,pos)

第一個文法返回字串 str中子字串substr的第一個出現位置。第二個文法返回字串str中子字串substr的第一個出現位置, 起始位置在pos。如若substr 不在str中,則傳回值為0。

mysql> SELECT LOCATE(‘bar’, ‘foobarbar’);

-> 4

mysql> SELECT LOCATE(‘xbar’, ‘foobar’);

-> 0

mysql> SELECT LOCATE(‘bar’, ‘foobarbar’,5);

-> 7

這個函數支援多位元組字元,並且只有當至少有一個參數是二進位字串時區分大小寫。

  • POSITION(substr IN str)

POSITION(substr IN str)是 LOCATE(substr,str)同義字。

Mysql函數INSTR、LOCATE、POSITION VS LIKE

相關文章

聯繫我們

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