题目:
你能写一个 SQL 查询语句,找到只出现过一次的数字中,最大的一个数字吗?下面是测试数据参考答案:
数据库版本:Server version: 8.0.20 MySQL Community Server - GPL
建表语句
create table dailytest_20200702(num int);
数据准备
insert into dailytest_20200702 values (8),(8),(3),(3),(1),(4),(5),(6);
查询逻辑
select
num
from dailytest_20200702
group by num having count(1) = 1
order by num desc
limit 1;
网友评论