본문 바로가기
Tests/Leetcode

[리트코드] 601.Human Traffic of Stadium (MySQL)

by 코딩하는 금융인 2021. 5. 27.

문제 > leetcode 601. Human Traffic of Stadium


SQL 스키마 & 문제 설명

출처 : leetcode 601. Human Traffic of Stadium

 

Human Traffic of Stadium - LeetCode

Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview.

leetcode.com


▶ 나의 풀이 in MySQL

#문제 풀이
select distinct t1.*
from stadium t1, stadium t2, stadium t3
where t1.people >= 100 and t2.people >= 100 and t3.people >= 100

▶ 쿼리 설명

  1. 3개의 행이 연속적으로 people 값이 100 이상이어야 하므로 Stadium table t1 ~ t3까지 생성
  2. 같은 table 3개로부터 값을 추출하므로 중복된 값 피하기 위해 distinct 처리
  3. where문으로 3개의 table.people 모두 100 이상 조건 설정
반응형

댓글