leetcode 619 只出現一次的最大數字
select max(num) as num from ( select num as num from MyNumbers group by num having count(num) = 1 ) as mn
select if(count(num) = 1, num, null) as num from MyNumbers group by num order by num desc limit 0,1
标签:619,數字,出現,num,leetcode,select From: https://www.cnblogs.com/carlzhang19/p/17385870.html