Mysql - REGEXP

摘要:Mysql - REGEXP

Mysql 有提供 正規表示式的查詢條件 ,REGEXP

 

查法如文件

http://dev.mysql.com/doc/refman/5.0/en/pattern-matching.html

 

select * from table where name REGEXP 'express';

 

我剛好需要用到後面要有8個碼的

select * from table where name REGEXP 'xxxxxxxxxxxxx_.{8}'

select * from table where name REGEXP 'xxxxxxxxxxxxx_[0-9]{8}'