mysql学习打卡day5

今日成果:

select * from customers
where address like '%trail%' or address like '%avenue%';
-- like包含特定条件的字符串 
-- %表示任意字符 
-- _表示单个字符

select * from customers where first_name regexp 'elka|ambur';
-- 查找elka或ambur的firstname
select * from customers where last_name regexp 'ey$|on$';
-- 查找ey或者on结尾的lastname
select * from customers where last_name regexp '^my|se';
-- 查找my开头或者包含se的lastname
select * from customers where last_name regexp 'br|bu';
select * from customers where last_name regexp 'b[ru]';
-- 查找br或者bu的lastname

-- ^ 表示开始(开头)
-- $ 表示结尾 
-- | 表示多个搜索模式(多个逻辑上的或or)
-- []匹配任意在括号里的单字符 
-- [a-d] 表示范围a,b,c,d 

感谢各位读者查阅,欢迎 各位点赞✍评论⭐收藏!

你可能感兴趣的:(学习)