Skip to content

Commit 5dfa0ed

Browse files
committed
[level 1] Title: 경기도에 위치한 식품창고 목록 출력하기, Time: , Memory: undefined -BaekjoonHub
1 parent befb83e commit 5dfa0ed

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

프로그래머스/1/131114. 경기도에 위치한 식품창고 목록 출력하기/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,19 @@
44

55
### 성능 요약
66

7-
메모리: 0.0 MB, 시간: 0.00 ms
7+
메모리: undefined, 시간:
88

99
### 구분
1010

1111
코딩테스트 연습 > IS NULL
1212

1313
### 채점결과
1414

15-
Empty
15+
합계: 100.0 / 100.0
1616

1717
### 제출 일자
1818

19-
2025년 01월 04일 22:48:33
19+
2026년 06월 10일 13:14:25
2020

2121
### 문제 설명
2222

Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
select WAREHOUSE_ID, WAREHOUSE_NAME, ADDRESS, IFNULL(FREEZER_YN, 'N') as FREEZEWR_YN
2-
from FOOD_WAREHOUSE
3-
where ADDRESS like '경기도%'
4-
order by WAREHOUSE_ID
1+
SELECT WAREHOUSE_ID, WAREHOUSE_NAME, ADDRESS, IFNULL(FREEZER_YN, "N") as FREEZER_YN
2+
FROM FOOD_WAREHOUSE
3+
WHERE SUBSTRING(ADDRESS, 1, 3) = "경기도"
4+
ORDER BY WAREHOUSE_ID

0 commit comments

Comments
 (0)