Mysql基础第十一天,用通配符进行过滤

Posted 2019ab

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mysql基础第十一天,用通配符进行过滤相关的知识,希望对你有一定的参考价值。

LIKE操作符

在这里插入图片描述

select cust_name from customers where cust_name like '%ou%';  // %通配符  %ou  以ou结尾 ou%以ou开头  %ou% 中间包含ou
select cust_name from customers where cust_name like '_ou%';  // _通配符  _ou  ou前面有一个任意字符 __ou  ou前面有二个任意字符 ou__  ou后面有二个任意字符
select vend_name from vendors where binary vend_name liske 'jet%'; // binary 区分大小写
 

使用通配符的技巧

在这里插入图片描述

以上是关于Mysql基础第十一天,用通配符进行过滤的主要内容,如果未能解决你的问题,请参考以下文章

MySQL基础之MySQL必知必会用通配符进行过滤

[MySQL] 用通配符进行过滤

mysql必知必会--用通配符进行过滤

MySQL比知必会第八章 用通配符进行过滤

MySQL--用通配符进行过滤(LIKE操作符)

MySQL必知应会-第9章-用正则表达式进行搜索