MySQL比like語句更高效的寫法
阿新 • • 發佈:2019-01-01
你是否一直在尋找比MySQL的LIKE語句更高效的方法的,下面我就為你介紹幾種。
LIKE語句
SELECT `column` FROM `table` where `condition` like `%keyword%'
事實上,可以使用locate(position) 和 instr這兩個函式來代替
一、LOCATE語句
SELECT `column` from `table` where locate(‘keyword’, `condition`)>0
二、或是 locate 的別名 position
POSITION語句
SELECT `column` from `table` where position(‘keyword’ IN `condition`)
三、INSTR語句
SELECT `column` from `table` where instr(`condition`, ‘keyword’ )>0
locate、position 和 instr 的差別只是引數的位置不同,同時locate 多一個起始位置的引數外,兩者是一樣的。
mysql> SELECT LOCATE(‘bar’, ‘foobarbar’,5);
-> 7
速度上這三個比用 like 稍快了一點。
~~~~~~~~~~~~~~~~~~~~~~~華麗的分割線~~~~~~~~~~~~~~~~~~~~~~~~~~~~
四、還要給大家介紹一個新成員,那就是find_in_set
LIKE語句
SELECT `column` FROM `table` where `condition` like `%keyword%'
事實上,可以使用locate(position) 和 instr這兩個函式來代替
一、LOCATE語句
SELECT `column` from `table` where locate(‘keyword’, `condition`)>0
二、或是 locate 的別名 position
POSITION語句
SELECT `column` from `table` where position(‘keyword’ IN `condition`)
三、INSTR語句
SELECT `column` from `table` where instr(`condition`, ‘keyword’ )>0
locate、position 和 instr 的差別只是引數的位置不同,同時locate 多一個起始位置的引數外,兩者是一樣的。
mysql> SELECT LOCATE(‘bar’, ‘foobarbar’,5);
-> 7
速度上這三個比用 like 稍快了一點。
~~~~~~~~~~~~~~~~~~~~~~~華麗的分割線~~~~~~~~~~~~~~~~~~~~~~~~~~~~
四、還要給大家介紹一個新成員,那就是find_in_set
find_in_set(str1,str2) 函式:返回str2中str1所在的位置索引,其中str2必須以","分割開。
表:
mysql> select * from region;
+----+-------------+
| id | name |
+----+-------------+
| 1 | name1,nam2 |
| 2 | name1 |
| 3 | name3 |
| 4 | name2,name4 |
| 5 | name3,name5 |
+----+-------------+
5 rows in set (0.00 sec)
FIND_IN_SET語句
mysql> select * from test where find_in_set('name1',name);
+----+------------+
| id | name |
+----+------------+
| 1 | name1,nam2 |
| 2 | name1 |
+----+------------+
2 rows in set (0.02 sec)
五、當然,還有mysql的全文索引
全文索引:http://dev.mysql.com/doc/refman/5.6/en/fulltext-search.html