-
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 -BaekjoonHub
- Loading branch information
Showing
2 changed files
with
102 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,99 @@ | ||
# [level 1] 역순 정렬하기 - 59035 | ||
|
||
[문제 링크](https://school.programmers.co.kr/learn/courses/30/lessons/59035) | ||
|
||
### 성능 요약 | ||
|
||
메모리: 0.0 MB, 시간: 0.00 ms | ||
|
||
### 구분 | ||
|
||
코딩테스트 연습 > SELECT | ||
|
||
### 채점결과 | ||
|
||
Empty | ||
|
||
### 제출 일자 | ||
|
||
2023년 12월 4일 8:24:9 | ||
|
||
### 문제 설명 | ||
|
||
<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>동물 보호소에 들어온 모든 동물의 이름과 보호 시작일을 조회하는 SQL문을 작성해주세요. 이때 결과는 ANIMAL_ID 역순으로 보여주세요. SQL을 실행하면 다음과 같이 출력되어야 합니다.</p> | ||
<table class="table"> | ||
<thead><tr> | ||
<th>NAME</th> | ||
<th>DATETIME</th> | ||
</tr> | ||
</thead> | ||
<tbody><tr> | ||
<td>Rocky</td> | ||
<td>2016-06-07 09:17:00</td> | ||
</tr> | ||
<tr> | ||
<td>Shelly</td> | ||
<td>2015-01-29 15:01:00</td> | ||
</tr> | ||
<tr> | ||
<td>Benji</td> | ||
<td>2016-04-19 13:28:00</td> | ||
</tr> | ||
<tr> | ||
<td>Jackie</td> | ||
<td>2016-01-03 16:25:00</td> | ||
</tr> | ||
<tr> | ||
<td>*Sam</td> | ||
<td>2016-03-13 11:17:00</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
<p>..이하 생략</p> | ||
|
||
<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,3 @@ | ||
-- 코드를 입력하세요 | ||
SELECT NAME, DATETIME FROM ANIMAL_INS | ||
ORDER BY ANIMAL_ID DESC; |