赞
踩
REGEXP运算符,是正则表达式(regular expression)的缩写,正则表达式在搜索字符串时非常强大,下面是关于它的应用
1.查找名字中包含field的顾客
select *
from customers
where last_name like '%field%'
运用REGEXP运算符,可以这样写,同样可以得出数据
select *
from customers
where last_name regexp 'field'
2.查找姓氏以Brush开头的顾客
^表示查找的字符串必须以什么开头
select *
from customers
where last_name regexp '^brush'
3.查找姓氏以field结尾的顾客
$表示查找的字符串必须以什么结尾
select *
from customers
where last_name regexp 'field$'
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。