当前位置:网站首页>SQL学习笔记——REGEXP运算符
SQL学习笔记——REGEXP运算符
2022-08-02 14:40:00 【m0_67402125】
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$'
3.查找姓氏包含field或者mac的顾客
|符号表示多个搜寻模式
select *
from customers
where last_name regexp 'brush|mac'
4.查找以brush开头,或者包含mac,或者包含rose的顾客
select *
from customers
where last_name regexp '^brush|mac|rose'
5.查找姓氏包含e,且前面要有g或i或m
select *
from customers
where last_name regexp '[gim]e'
6.查找姓氏包含e,且后面要有a但h中的一个字母
select *
from customers
where last_name regexp 'e[a-h]'
总结:
^表示字符串开头
¥表示字符串结尾
|表示逻辑上的or,可以给出多个搜索模式
[]表示任意在括号里列举的单字符
[-]表示任意在括号内范围内的单字符
练习
1.获取名字是Elka或者Ambur的顾客
select *
from customers
where first_name regexp 'elka|ambur'
2.返回姓氏以ey或者on结尾的顾客
select *
from customers
where last_name regexp 'ey$|on$'
3.获取姓氏以my打头,或者包含se的顾客
select *
from customers
where last_name regexp '^my|se'
4.返回顾客,姓氏包含b,然后是r或者u
select *
from customers
where last_name regexp 'b[ru]'
先自我介绍一下,小编13年上师交大毕业,曾经在小公司待过,去过华为OPPO等大厂,18年进入阿里,直到现在。深知大多数初中级java工程师,想要升技能,往往是需要自己摸索成长或是报班学习,但对于培训机构动则近万元的学费,着实压力不小。自己不成体系的自学效率很低又漫长,而且容易碰到天花板技术停止不前。因此我收集了一份《java开发全套学习资料》送给大家,初衷也很简单,就是希望帮助到想自学又不知道该从何学起的朋友,同时减轻大家的负担。添加下方名片,即可获取全套学习资料哦
边栏推荐
猜你喜欢
随机推荐
Vest bag access process record
es6 循环,并终止循环
PAT Class A 1019 Common Palindrome Numbers
散列表简述
2022 Security Officer-A Certificate Exam Questions and Mock Exam
机械键盘失灵
PAT甲级 1078 哈希
2022-07-27 第六小组 瞒春 学习笔记
PAT serie a 1137 final grades
2022-07-16 第五小组 瞒春 学习笔记
mysql 递归函数with recursive的用法
BSC链智能合约模式系统开发功能逻辑分析
2022/7/15,我的人生中第一篇博客,不忘初心,砥砺前行!
2022年低压电工考试试题及在线模拟考试
2022-07-26 第六小组 瞒春 学习笔记
初入c语言
【 Leetcode string, the string transform/hexadecimal conversion 】 HJ1. The length of the string last word HJ2. Calculation of a certain number of characters appear HJ30. String merging processing
2022-02-14 第五小组 瞒春 学习笔记
中科驭数等单位牵头发布行业首部DPU评测方法技术白皮书
5000mAh大电池!华为全新鸿蒙手机今晚亮相:更流畅更安全