-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[level 1] Title: 이름이 없는 동물의 아이디, Time: 0.00 ms, Memory: 0.0 MB -Baekj…
…oonHub
- Loading branch information
Showing
2 changed files
with
126 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,122 @@ | ||
# [level 1] 이름이 없는 동물의 아이디 - 59039 | ||
|
||
[문제 링크](https://school.programmers.co.kr/learn/courses/30/lessons/59039) | ||
|
||
### 성능 요약 | ||
|
||
메모리: 0.0 MB, 시간: 0.00 ms | ||
|
||
### 구분 | ||
|
||
코딩테스트 연습 > IS NULL | ||
|
||
### 채점결과 | ||
|
||
Empty | ||
|
||
### 제출 일자 | ||
|
||
2024년 05월 10일 16:02:07 | ||
|
||
### 문제 설명 | ||
|
||
<p><code>ANIMAL_INS</code> 테이블은 동물 보호소에 들어온 동물의 정보를 담은 테이블입니다. <code>ANIMAL_INS</code> 테이블 구조는 다음과 같으며, <code>ANIMAL_ID</code>, <code>ANIMAL_TYPE</code>, <code>DATETIME</code>, <code>INTAKE_CONDITION</code>, <code>NAME</code>, <code>SEX_UPON_INTAKE</code>는 각각 동물의 아이디, 생물 종, 보호 시작일, 보호 시작 시 상태, 이름, 성별 및 중성화 여부를 나타냅니다.</p> | ||
<table class="table"> | ||
<thead><tr> | ||
<th>NAME</th> | ||
<th>TYPE</th> | ||
<th>NULLABLE</th> | ||
</tr> | ||
</thead> | ||
<tbody><tr> | ||
<td>ANIMAL_ID</td> | ||
<td>VARCHAR(N)</td> | ||
<td>FALSE</td> | ||
</tr> | ||
<tr> | ||
<td>ANIMAL_TYPE</td> | ||
<td>VARCHAR(N)</td> | ||
<td>FALSE</td> | ||
</tr> | ||
<tr> | ||
<td>DATETIME</td> | ||
<td>DATETIME</td> | ||
<td>FALSE</td> | ||
</tr> | ||
<tr> | ||
<td>INTAKE_CONDITION</td> | ||
<td>VARCHAR(N)</td> | ||
<td>FALSE</td> | ||
</tr> | ||
<tr> | ||
<td>NAME</td> | ||
<td>VARCHAR(N)</td> | ||
<td>TRUE</td> | ||
</tr> | ||
<tr> | ||
<td>SEX_UPON_INTAKE</td> | ||
<td>VARCHAR(N)</td> | ||
<td>FALSE</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
<p>동물 보호소에 들어온 동물 중, 이름이 없는 채로 들어온 동물의 ID를 조회하는 SQL 문을 작성해주세요. 단, ID는 오름차순 정렬되어야 합니다. </p> | ||
|
||
<h5>예시</h5> | ||
|
||
<p>예를 들어 <code>ANIMAL_INS</code> 테이블이 다음과 같다면</p> | ||
<table class="table"> | ||
<thead><tr> | ||
<th>ANIMAL_ID</th> | ||
<th>ANIMAL_TYPE</th> | ||
<th>DATETIME</th> | ||
<th>INTAKE_CONDITION</th> | ||
<th>NAME</th> | ||
<th>SEX_UPON_INTAKE</th> | ||
</tr> | ||
</thead> | ||
<tbody><tr> | ||
<td>A368930</td> | ||
<td>Dog</td> | ||
<td>2014-06-08 13:20:00</td> | ||
<td>Normal</td> | ||
<td>NULL</td> | ||
<td>Spayed Female</td> | ||
</tr> | ||
<tr> | ||
<td>A524634</td> | ||
<td>Dog</td> | ||
<td>2015-01-02 18:54:00</td> | ||
<td>Normal</td> | ||
<td>*Belle</td> | ||
<td>Intact Female</td> | ||
</tr> | ||
<tr> | ||
<td>A465637</td> | ||
<td>Dog</td> | ||
<td>2017-06-04 08:17:00</td> | ||
<td>Injured</td> | ||
<td>*Commander</td> | ||
<td>Neutered Male</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
<p>이름이 없는 채로 들어온 동물의 ID는 A368930입니다. 따라서 SQL을 실행하면 다음과 같이 출력되어야 합니다.</p> | ||
<table class="table"> | ||
<thead><tr> | ||
<th>ANIMAL_ID</th> | ||
</tr> | ||
</thead> | ||
<tbody><tr> | ||
<td>A368930</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
<hr> | ||
|
||
<p>본 문제는 <a href="https://www.kaggle.com/aaronschlegel/austin-animal-center-shelter-intakes-and-outcomes" target="_blank" rel="noopener">Kaggle의 "Austin Animal Center Shelter Intakes and Outcomes"</a>에서 제공하는 데이터를 사용하였으며 <a href="https://opendatacommons.org/licenses/odbl/1.0/" target="_blank" rel="noopener">ODbL</a>의 적용을 받습니다.</p> | ||
|
||
<p>※ 2019년 9월 4일 13시: 예시가 헷갈린다는 의견이 많아, 본문의 예시를 수정하였습니다.</p> | ||
|
||
|
||
> 출처: 프로그래머스 코딩 테스트 연습, https://school.programmers.co.kr/learn/challenges |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
SELECT ANIMAL_ID | ||
from ANIMAL_INS | ||
where ISNULL(NAME) | ||
; |