Skip to content

Commit

Permalink
Add: 프로그래머스 역순 정렬하기
Browse files Browse the repository at this point in the history
  • Loading branch information
JeangyuHeo committed Jan 10, 2022
1 parent b0eae43 commit b17bebd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
4 changes: 4 additions & 0 deletions SQL/프로그래머스_모든_레코드_조회하기.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
SELECT ANIMAL_ID, ANIMAL_TYPE, DATETIME, INTAKE_CONDITION, NAME, SEX_UPON_INTAKE

FROM ANIMAL_INS;

3 changes: 3 additions & 0 deletions SQL/프로그래머스_역순정렬하기.md
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

0 comments on commit b17bebd

Please sign in to comment.