본문 바로가기

SQL

(SQL) - LeetCode (easy) 619. Biggest Single Number

반응형

https://leetcode.com/problems/biggest-single-number/description/

 

Biggest Single Number - LeetCode

Can you solve this real interview question? Biggest Single Number - Table: MyNumbers +-------------+------+ | Column Name | Type | +-------------+------+ | num | int | +-------------+------+ There is no primary key for this table. It may contain duplicates

leetcode.com

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

*더 나은 내용을 위한 지적, 조언은 언제나 환영합니다.