반응형
https://leetcode.com/problems/biggest-single-number/description/
group by와 sub query를 사용해본 문제였습니다.
📕 풀이방법
📔 풀이과정
1. 1번 나온 수를 num에서 select해줍니다.2. 그 중 가장 큰 값을 max함수로 찾아 select해줍니다.
📕 Code
📔 MySQL & Oracle
-- MySQL & Oracle
select max(m.num) as num from (
select num
from mynumbers
group by num
having count(*) = 1
) m
*더 나은 내용을 위한 지적, 조언은 언제나 환영합니다.
'SQL' 카테고리의 다른 글
(SQL) - LeetCode (easy) 1075. Project Employees I (0) | 2023.10.24 |
---|---|
(SQL) - LeetCode (easy) 627. Swap Salary (0) | 2023.05.25 |
(SQL) - LeetCode (easy) 595. Big Countries (1) | 2023.05.09 |
(SQL) - LeetCode (easy) 584. Find Customer Referee (0) | 2023.05.02 |
(SQL) - LeetCode (easy) 577. Employee Bonus (0) | 2023.04.28 |