整理自清華大學出版社《mysql入門很簡單》
基本形式
屬性名 regexp 『匹配方式』
正規表示式的模式字元
^ 匹配字元開始的部分
eg1: 從info表name欄位中查詢以l開頭的記錄
select * from info where name regexp '^l';
eg2: 從info表name欄位中查詢以aaa開頭的記錄
select * from info where name regexp '^aaa';
$ 匹配字元結束的部分
eg1: 從info表name欄位中查詢以c結尾的記錄
select * from info where name regexp 'c$';
eg2: 從info表name欄位中查詢以aaa結尾的記錄
select * from info where name regexp 'aaa$';
. 匹配字串中的任意乙個字元,包括回車和換行
eg1: 從info表name欄位中查詢以l開頭y結尾中間有兩個任意字元的記錄
select * from info where name regexp '^l..y$';
[字元集合]匹配字元集合中的任意字元
eg1: 從info表name欄位中查詢包含c、e、o三個字母中任意乙個的記錄
select * from info where name regexp '[ceo]';
eg2: 從info表name欄位中查詢包含數字的記錄
select * from info where name regexp '[0-9]';
eg3: 從info表name欄位中查詢包含數字或a、b、c三個字母中任意乙個的記錄
select * from info where name regexp '[0-9a-c]';
[^字元集合]匹配除了字元集合外的任意字元
eg1: 從info表name欄位中查詢包含a-w字母和數字以外字元的記錄
select * from info where name regexp '[^a-w0-9]';
s1|s2|s3 匹配s1s2s3中的任意乙個
eg1: 從info表name欄位中查詢包含'ic'的記錄
select * from info where name regexp 'ic';
eg2: 從info表name欄位中查詢包含ic、uc、ab三個字串中任意乙個的記錄
select * from info where name regexp 'ic|uc|ab';
* 代表多個該字元前的字元,包括0個或1個
eg1: 從info表name欄位中查詢c之前出現過a的記錄
select * from info where name regexp 'a*c';
+ 代表多個該字元前的字元,包括1個
eg1: 從info表name欄位中查詢c之前出現過a的記錄
select * from info where name regexp 'a+c';(注意比較結果!)
字串 字串出現n次
eg1: 從info表name欄位中查詢出現過a3次的記錄
select * from info where name regexp 'a';
字串字串最少出現m次,最多出現n次
eg1: 從info表name欄位中查詢ab出現最少1次最多3次的記錄
select * from info where name regexp 'ab';
%可以表示任意長度的字元(包括0)
-可以表示單個字元
MySQL 使用正規表示式查詢
字元 匹配特定字元 select from fruits where f name regexp b 字元 特定字元結尾 select from fruits where f name regexp y 字元 代替字串中的任意乙個字元 select from fruits where f name ...
MYSQL 正規表示式查詢!
在使用select查詢的過程中,有時會用到正規表示式對結果進行查詢,將學習到的內容進行總結!一 語法結構如下 二 常用匹配方式進行示例說明 首先建立表student,表的結構如下 查詢student表中sname列已 王 開始的姓名 select sname from student where s...
mysql正規表示式 MySQL正規表示式
正規表示式是為複雜搜尋指定模式的強大方式。正規表示式描述了一組字串。最簡單的正規表示式是不含任何特殊字元的正規表示式。例如,正規表示式hello匹配hello。非平凡的正規表示式採用了特殊的特定結構,從而使得它們能夠與1個以上的字串匹配。例如,正規表示式hello word匹配字串hello或字串w...