程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> MySQL正則表達式初步

MySQL正則表達式初步

編輯:MySQL綜合教程

我們知道,在SQL之中,可以用 like 這個謂詞(表達式) 來進行模糊檢索,並支持 %,?,_等占位符.
但是,這個模糊檢索的功能有很多限制,簡單來說就是太模糊了。
在MySQL中提供了 REGEXP 關鍵字來支持正則表達式,當然,只是一些很簡單的正則啦。
首先,我們構造一些測試數據。

-- 建表
USE test;
DROP TABLE IF EXISTS t_regcustomer;
CREATE TABLE t_regcustomer (
	id INT(10) AUTO_INCREMENT
	,name VARCHAR(256)
	,age INT(10)
	, PRIMARY KEY(id)
) COLLATE='utf8_general_ci' ENGINE=InnoDB;
增加一些測試數據:
-- 插入一些測試數據:
TRUNCATE TABLE t_regcustomer;
INSERT INTO t_regcustomer(name, age) VALUES ('王明',20);
INSERT INTO t_regcustomer(name, age) VALUES ('王大',21);
INSERT INTO t_regcustomer(name, age) VALUES ('小王',22);
INSERT INTO t_regcustomer(name, age) VALUES ('小王2',22);
INSERT INTO t_regcustomer(name, age) VALUES ('敲不死',23);
INSERT INTO t_regcustomer(name, age) VALUES ('憨憨',24);
INSERT INTO t_regcustomer(name, age) VALUES ('憨憨2',24);
INSERT INTO t_regcustomer(name, age) VALUES ('郭靖名',25);
INSERT INTO t_regcustomer(name, age) VALUES ('郭靖2',25);
INSERT INTO t_regcustomer(name, age) VALUES ('郭靖3',25);
INSERT INTO t_regcustomer(name, age) VALUES 
('郭得缸',25)
,('大鵬',20)
,('大鵬2',20)
,('大鵬3',20)
,('二鵬',19)
,('鵬鵬',18)
,('鵬鵬1',18)
,('小鵬',17)
,('AAA',17)
,('aaa',17)
,('SS',17)
,('s2',17)
,('ss',17)
;

1. 最簡單的查詢:
SELECT *
FROM t_regcustomer;
2. 指定列名查詢
SELECT c.id, c.name, c.age
FROM t_regcustomer c
;
3. 對查詢結果排序
SELECT c.id, c.name, c.age
FROM t_regcustomer c
ORDER BY c.age ASC
;
4. like 模糊檢索
%匹配任意數量(0~n)的任意字符
SELECT c.id, c.name, c.age
FROM t_regcustomer c
WHERE c.name LIKE '%鵬%'
ORDER BY c.age ASC
;
5. regexp 關鍵字
.匹配任意一個字符
注意此處因為沒有起始(^)和結束($)限定符,所以只要列中出現的行都會被檢索出來.
SELECT c.id, c.name, c.age
FROM t_regcustomer c
WHERE c.name REGEXP '.鵬.'
ORDER BY c.age ASC
;
6. 正則起始限定符
SELECT c.id, c.name, c.age
FROM t_regcustomer c
WHERE c.name REGEXP '^王'
ORDER BY c.age ASC
;
7. 大小寫敏感
SELECT c.id, c.name, c.age
FROM t_regcustomer c
WHERE c.name REGEXP BINARY '^s'
ORDER BY c.age ASC
;
8. 正則或運算
SELECT c.id, c.name, c.age
FROM t_regcustomer c
WHERE c.name REGEXP BINARY 'a|s'
ORDER BY c.name ASC
;
9. 組運算正則
[123] 表示 1、2、3這3個數字之一出現即可
SELECT c.id, c.name, c.age
FROM t_regcustomer c
WHERE c.name REGEXP BINARY '鵬[123]'
ORDER BY c.name ASC
;
[1-9] 匹配 1、2、3、.... 8、9
SELECT c.id, c.name, c.age
FROM t_regcustomer c
WHERE c.name REGEXP BINARY '鵬[1-9]'
ORDER BY c.name ASC
;
10. 轉義
使用 \\
可以轉義 \.[]()?-| 以及分頁,換行符號等

11.更多內容

請查閱 《MySQL必知必會》 68頁 正則表達式


  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved