MySQL數據庫是支持正則表達式的,主要解決過濾特別復雜的查詢場景,在實際工作中,使用的場景不多,大部分場景like可以解決。
這里主要說說like和regexp之間的差別
- like是匹配整列值,regexp是匹配子字符串
- like部分場景可以走索引,而regexp則不會走索引
like是匹配整列值,regexp是匹配子字符串
舉個例子:
例如pad列的值為:
30742328470-63631046568-21137316667-11884173392-16264131183
pad like '30742328470’這種寫法,是查詢不到記錄的,除非使用pad like ‘30742328470%’,匹配整列的值。
而如果用regexp,可以這樣寫,pad regexp ‘30742328470’,不用匹配整列值,就可以過濾出需要的記錄行。
like部分場景可以走索引,而regexp則不會走索引
還是舉一個實際案例來說明一下。
過濾t_sbtest2中,前綴為30742328470的記錄,分別來看看SQL的執行計劃。
使用like的執行計劃
[root@localhost] 17:09:20 [t_db]>explain select * from t_sbtest2 where pad like '30742328470%';
+----+-------------+-----------+------------+-------+---------------+---------+---------+------+------+----------+-----------------------+
| id | select_type | table | partitions | type | possible_keys | key | key_len | ref | rows | filtered | Extra |
+----+-------------+-----------+------------+-------+---------------+---------+---------+------+------+----------+-----------------------+
| 1 | SIMPLE | t_sbtest2 | NULL | range | idx_pad | idx_pad | 180 | NULL | 1 | 100.00 | Using index condition |
+----+-------------+-----------+------------+-------+---------------+---------+---------+------+------+----------+-----------------------+
1 row in set, 1 warning (0.00 sec)
使用regexp的執行計劃
[root@localhost] 17:10:13 [t_db]>explain select * from t_sbtest2 where pad regexp '30742328470';
+----+-------------+-----------+------------+------+---------------+------+---------+------+------+----------+-------------+
| id | select_type | table | partitions | type | possible_keys | key | key_len | ref | rows | filtered | Extra |
+----+-------------+-----------+------------+------+---------------+------+---------+------+------+----------+-------------+
| 1 | SIMPLE | t_sbtest2 | NULL | ALL | NULL | NULL | NULL | NULL | 2946 | 100.00 | Using where |
+----+-------------+-----------+------------+------+---------------+------+---------+------+------+----------+-------------+
1 row in set, 1 warning (0.00 sec)
從上面可以看出,like語句是走了idx_pad索引,而regexp沒有走索引,如果生產上有使用regexp的需求,則需要注意語句的性能,尤其是做更新和刪除的時候,會導致鎖表。