[프로그래머스/SQL]상위 n개 레코드

gov's avatar
Nov 26, 2024
[프로그래머스/SQL]상위 n개 레코드
Contents
문제풀이

문제

notion image

풀이

order by 칼럼명 limit 출력개수
SELECT name from animal_ins order by datetime limit 1;
 
Share article

goho