Home > Database > Mysql Tutorial > body text

Mysql 正则表达式查询

WBOY
Release: 2016-06-07 15:47:03
Original
1242 people have browsed it

正则表达式匹配查询: 通配符 . 英文句号,匹配任意单个字符; * 匹配0个或多个在它前面的字符; x*表示匹配任何数量的x字符 [...] 匹配中括号的任意字符 [abc] 匹配字符a、b或c [a-z] 匹配的是任意字母 [0-9] 匹配任意数字 [0-9]* ^ 表示以某个字符或字符串

正则表达式匹配查询:

通配符

. 英文句号,匹配任意单个字符;

* 匹配0个或多个在它前面的字符;

       x*表示匹配任何数量的x字符

[...] 匹配中括号的任意字符

     [abc] 匹配字符a、b或c

     [a-z] 匹配的是任意字母

    [0-9] 匹配任意数字

    [0-9]* 

^  表示以某个字符或字符串开始   ^a 表示以字母a开头

$  表示以某个字符或字符串结尾   x$ 表示以字母s结尾

SELECT prod_name FROM products WHERE prod_name REGEXP '^NB' ORDER BY prod_name;


为区分大小写,可使用BINARY关键字。如:WHERE prod_name REGEXP BINARY  'JetPack .000'

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template