♟️ 알고리즘/Leetcode 17

[MySQL][Leet Code]180. Consecutive Numbers (Medium)

https://leetcode.com/problems/consecutive-numbers/description/?envType=study-plan-v2&envId=top-sql-50🏫  추가 학습 (Window Function) 참고로 OVER()는 윈도우 함수가 적용될 데이터 범위를 정하는 역할이다. 순위 함수 (Ranking Functions)SELECT id, num, ROW_NUMBER() OVER(ORDER BY num) AS row_num, RANK() OVER(ORDER BY num) AS rank_num, DENSE_RANK() OVER(ORDER BY num) AS dense_rank_numFROM Logs;ROW_NUMBER()정렬 순서대로 고유한 순위..

[MySQL][Leet Code] 1789. Primary Department for Each Employee (Easy)

https://leetcode.com/problems/primary-department-for-each-employee/?envType=study-plan-v2&envId=top-sql-50🗒️SQL 코드 풀이 SELECT employee_id , department_id FROM EmployeeWHERE employee_id IN ( SELECT employee_id FROM Employee GROUP BY employee_id HAVING COUNT(*) = 1 )OR primary_flag = "Y" 1. 조건이 2개가 있다. primary_flag 1개 밖에 없는 경우primary_flag가  Y인 경우 2.  이 두가지를 WHERE로..

[MySQL][Leet Code] 619. Biggest Single Number

https://leetcode.com/problems/biggest-single-number/description/?envType=study-plan-v2&envId=top-sql-50🗒️SQL 코드 풀이 SELECT MAX(A.num) AS num FROM ( SELECT * FROM MyNumbers GROUP BY num HAVING COUNT(num) = 1 ) A 1. 간단하게 풀이 가능한 문제이다. 2. GROUP BY 와 HAVING으로 중복되는 숫자를 제거한 서브쿼리를 만든다. 3. 해당 서브쿼리를 가져와 MAX 값을 추출한다.  문제 한번 더 돌아보기SELECT * FROM ..

[MySQL][Leet Code] 1633. Percentage of Users Attended a Contest (Easy)

https://leetcode.com/problems/percentage-of-users-attended-a-contest/?envType=study-plan-v2&envId=top-sql-50🗒️SQL 코드 풀이 SELECT R.contest_id, ROUND(COUNT(DISTINCT R.user_id)/(SELECT COUNT(DISTINCT user_id)FROM Users)*100 ,2) percentage FROM Register R GROUP BY contest_id ORDER BY percentage DESC, contest_id 1. 메인 테이블은 Register의 테이블이다.  2. Register 테이블을 cont..