当前位置:网站首页>SQL练习 2022/6/30
SQL练习 2022/6/30
2022-08-04 05:28:00 【Provence°_博】
SQL练习 2022/6/30
182. 查找重复的电子邮箱
题干
代码思路
- group by 然后having判断数量大于一就可
select Email
from Person
group by email
having count(id)>1
- 使用 GROUP BY 和临时表
select Email from
(
select Email, count(Email) as num
from Person
group by Email
) as statistic
where num > 1;
183. 从不订购的客户
题干
代码思路
- 嵌套查询
select name as Customers
from Customers
where id not in
(
select CustomerId
from Orders
)
- 左连接,然后判断为null
select name as Customers
from Customers left join Orders
on Customers.id= Orders.CustomerId
where CustomerID is null
边栏推荐
猜你喜欢
随机推荐
PHP解决字符乱码问题(多种编码转换)
自动化运维工具Ansible(2)ad-hoc
关于let var 和const的区别以及使用
LCP 17. Quick Calculation Robot
完美解决keyby造成的数据倾斜导致吞吐量降低的问题
箭头函数的使用
跨域问题的解决
关于 for in与for of 的差别以及如何使用
进程、线程、协程的区别和联系?
智能合约安全——delegatecall (1)
二月、三月校招面试复盘总结(二)
IvNWJVPMLt
记录获取参赛选手信息过程
FLV格式详解
实际开发中,如何实现复选框的全选和不选
乱码解决方案
关于事件捕获和事件冒泡的顺序,以及如何处理事件冒泡带来的影响
JNI基本使用
Commons Collections2
Vulnhub:Sar-1