[프로그래머스/SQL]역순 정렬하기

gov's avatar
Dec 05, 2024
[프로그래머스/SQL]역순 정렬하기
Contents
문제풀이

문제

notion image

풀이

SELECT name, datetime from animal_ins order by animal_id desc;
Share article

goho