문제 > leetcode 601. Human Traffic of Stadium
SQL 스키마 & 문제 설명
출처 : leetcode 601. Human Traffic of Stadium
▶ 나의 풀이 in MySQL
#문제 풀이
select distinct t1.*
from stadium t1, stadium t2, stadium t3
where t1.people >= 100 and t2.people >= 100 and t3.people >= 100
▶ 쿼리 설명
- 3개의 행이 연속적으로 people 값이 100 이상이어야 하므로 Stadium table t1 ~ t3까지 생성
- 같은 table 3개로부터 값을 추출하므로 중복된 값 피하기 위해 distinct 처리
- where문으로 3개의 table.people 모두 100 이상 조건 설정
반응형
'Tests > Leetcode' 카테고리의 다른 글
[리트코드] 262. Trips and Users (MySQL) (0) | 2021.05.28 |
---|---|
[리트코드] 197. Rising Temperature (MySQL) (0) | 2021.05.27 |
[leetcode] MySQL > 596. Classes More Than 5 Students (0) | 2021.02.08 |
[leetcode] MySQL > 180. Consecutive Numbers (0) | 2020.09.14 |
[leetcode] MySQL > 183. Customers Who Never Order (0) | 2020.09.12 |
댓글