-
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 3] Title: 있었는데요 없었습니다, Time: 0.00 ms, Memory: 0.0 MB -BaekjoonHub
- Loading branch information
Showing
2 changed files
with
183 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,177 @@ | ||
# [level 3] 있었는데요 없었습니다 - 59043 | ||
|
||
[문제 링크](https://school.programmers.co.kr/learn/courses/30/lessons/59043) | ||
|
||
### 성능 요약 | ||
|
||
메모리: 0.0 MB, 시간: 0.00 ms | ||
|
||
### 구분 | ||
|
||
코딩테스트 연습 > JOIN | ||
|
||
### 채점결과 | ||
|
||
Empty | ||
|
||
### 제출 일자 | ||
|
||
2024년 05월 11일 09:28:18 | ||
|
||
### 문제 설명 | ||
|
||
<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><code>ANIMAL_OUTS</code> 테이블은 동물 보호소에서 입양 보낸 동물의 정보를 담은 테이블입니다. <code>ANIMAL_OUTS</code> 테이블 구조는 다음과 같으며, <code>ANIMAL_ID</code>, <code>ANIMAL_TYPE</code>, <code>DATETIME</code>, <code>NAME</code>, <code>SEX_UPON_OUTCOME</code>는 각각 동물의 아이디, 생물 종, 입양일, 이름, 성별 및 중성화 여부를 나타냅니다. <code>ANIMAL_OUTS</code> 테이블의 <code>ANIMAL_ID</code>는 <code>ANIMAL_INS</code>의 <code>ANIMAL_ID</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>NAME</td> | ||
<td>VARCHAR(N)</td> | ||
<td>TRUE</td> | ||
</tr> | ||
<tr> | ||
<td>SEX_UPON_OUTCOME</td> | ||
<td>VARCHAR(N)</td> | ||
<td>FALSE</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
<p>관리자의 실수로 일부 동물의 입양일이 잘못 입력되었습니다. 보호 시작일보다 입양일이 더 빠른 동물의 아이디와 이름을 조회하는 SQL문을 작성해주세요. 이때 결과는 보호 시작일이 빠른 순으로 조회해야합니다. </p> | ||
|
||
<h5>예시</h5> | ||
|
||
<p>예를 들어, <code>ANIMAL_INS</code> 테이블과 <code>ANIMAL_OUTS</code> 테이블이 다음과 같다면</p> | ||
|
||
<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>A350276</td> | ||
<td>Cat</td> | ||
<td>2017-08-13 13:50:00</td> | ||
<td>Normal</td> | ||
<td>Jewel</td> | ||
<td>Spayed Female</td> | ||
</tr> | ||
<tr> | ||
<td>A381217</td> | ||
<td>Dog</td> | ||
<td>2017-07-08 09:41:00</td> | ||
<td>Sick</td> | ||
<td>Cherokee</td> | ||
<td>Neutered Male</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
<p><code>ANIMAL_OUTS</code></p> | ||
<table class="table"> | ||
<thead><tr> | ||
<th>ANIMAL_ID</th> | ||
<th>ANIMAL_TYPE</th> | ||
<th>DATETIME</th> | ||
<th>NAME</th> | ||
<th>SEX_UPON_OUTCOME</th> | ||
</tr> | ||
</thead> | ||
<tbody><tr> | ||
<td>A350276</td> | ||
<td>Cat</td> | ||
<td>2018-01-28 17:51:00</td> | ||
<td>Jewel</td> | ||
<td>Spayed Female</td> | ||
</tr> | ||
<tr> | ||
<td>A381217</td> | ||
<td>Dog</td> | ||
<td>2017-06-09 18:51:00</td> | ||
<td>Cherokee</td> | ||
<td>Neutered Male</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
<p>SQL문을 실행하면 다음과 같이 나와야 합니다. </p> | ||
<table class="table"> | ||
<thead><tr> | ||
<th>ANIMAL_ID</th> | ||
<th>NAME</th> | ||
</tr> | ||
</thead> | ||
<tbody><tr> | ||
<td>A381217</td> | ||
<td>Cherokee</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> | ||
|
||
|
||
> 출처: 프로그래머스 코딩 테스트 연습, 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,6 @@ | ||
SELECT ai.ANIMAL_ID, ai.NAME | ||
from ANIMAL_INS ai | ||
JOIN ANIMAL_OUTS ao | ||
ON ai.ANIMAL_ID = ao.ANIMAL_ID | ||
WHERE ai.DATETIME > ao.DATETIME | ||
order by ai.DATETIME |