文章目录
- 1. 题目
- 2. 解题
1. 题目
表 my_numbers 的 num 字段包含很多数字,其中包括很多重复的数字。
你能写一个 SQL 查询语句,找到只出现过一次的数字中,最大的一个数字吗?
+---+
|num|
+---+
| 8 |
| 8 |
| 3 |
| 3 |
| 1 |
| 4 |
| 5 |
| 6 |
对于上面给出的样例数据,你的查询语句应该返回如下结果:+---+
|num|
+---+
| 6 |
注意:如果没有只出现一次的数字,输出 null 。
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/biggest-single-number
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
2. 解题
- 以下答案在没有选择时,不能返回 null
# Write your MySQL query statement below
select num
from my_numbers
group by num
having(count(*)=1)
order by num desc
limit 1
- 再套一层即可
# Write your MySQL query statement below
select max(num) num from
(select numfrom my_numbersgroup by numhaving(count(*)=1)
) t
762 ms
我的CSDN博客地址 https://michael.blog.csdn.net/
长按或扫码关注我的公众号(Michael阿明),一起加油、一起学习进步!