문제
'STREET CHURROS'라는 이름의 시설 중 95점 이하를 받은 시설의 검사 날짜와 위험 카테고리(pe_description)를 찾아주세요.
테이블설명
예상결과
✏️ 풀이
SELECT activity_date, pe_description
FROM los_angeles_restaurant_health_inspections
WHERE facility_name = 'STREET CHURROS' AND score <= 95;
1. 'STREET CHUROOS' 필터
2. 95점 이하 필터
'[코딩테스트] > [SQL]' 카테고리의 다른 글
[StrataScratch - SQL] (Easy) MacBookPro User Event Count (0) | 2025.04.29 |
---|---|
[StrataScratch - SQL] (Easy) Most Profitable Financial Company (0) | 2025.04.28 |
[STrataScratch - SQL] (Easy) April Admin Employees (0) | 2025.04.25 |
[StrataScratch - SQL] (Easy) Workers With The Highest Salaries (0) | 2025.04.25 |
[StrataScratch - SQL] (Easy) (0) | 2025.04.24 |