《SQL必知必会》--第6课用通配符进行过滤及课后练习

本篇博客详细介绍了SQL中like操作符的使用,包括%通配符进行模糊查询,_通配符匹配单个字符,以及[]通配符指定字符集的用法。通过多个实例展示了如何在products和customers表中筛选特定数据,同时提供了课后练习以巩固这些概念。
摘要由CSDN通过智能技术生成

部分示例代码

like操作符+%通配符:模糊查询

①从products表中查询 以fish开头的prod_name以及它们对应的prod_id。

select prod_id,prod_name from [dbo].[Products]
where prod_name like 'FIsh%';

在这里插入图片描述
②从products表中查询prod_name包含“bean bag”字符的prod_name和prod_id。

select prod_id,prod_name from [dbo].[Products]
where prod_name like '%bean bag%';

在这里插入图片描述
③从products表中查询以F开头y结尾的prod_name和prod_id。

select prod_name from [dbo].[Products]
where prod_name like 'F%y';

在这里插入图片描述

like操作符+ _通配符:一个下划线只匹配单个字符

④匹配一个字符的例子

select prod_id,prod_name from [dbo].[Products]
where prod_name like '_ inch teddy bear'

在这里插入图片描述

⑤两个_ _,匹配两个字符的例子

select prod_id,prod_name from [dbo].[Products]
where prod_name like '__ inch teddy bear';

在这里插入图片描述
⑥与④和⑤对比,下面例子使用%

select prod_id,prod_name from [dbo].[Products] 
where prod_name like '%inch teddy bear';

在这里插入图片描述

like操作符+[]通配符:用于指定字符集,匹配[]中的任意字符即可

⑦从customers表中查询以J或M开头的cust_contact。

select cust_contact from [dbo].[Customers]
where cust_contact like '[JM]%';

在这里插入图片描述
⑧ []与^搭配,取反。返回与⑦的查询相反的数据

select cust_contact from [dbo].[Customers]
where cust_contact like '[^JM]%';

在这里插入图片描述

课后练习

①从products表中返回prod_name,prod_desc,仅返回prod_desc中包含“toy”的数据。

select prod_name,prod_desc from [dbo].[Products]
where prod_desc like '%toy%';

在这里插入图片描述
②从products表中返回prod_name,prod_desc,仅返回prod_desc中不包含“toy”的数据。

select prod_name,prod_desc from [dbo].[Products]
where not prod_desc like '%toy%'
order by prod_name;

在这里插入图片描述
③从products表中返回prod_name,prod_desc,仅返回prod_desc中既包含“toy”又包含“carrots”的数据。

select prod_name,prod_desc from [dbo].[Products]
where prod_desc like '%toy%' and prod_desc like '%carrots%';

在这里插入图片描述
④从products表中返回prod_name,prod_desc,仅返回prod_desc中既包含“toy”又包含“carrots”的数据。(用三个%表示)

select prod_name,prod_desc from [dbo].[Products]
where prod_desc like '%toy%carrots%';

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值