[SQL문제풀기] 데이터 정렬하기

silver's avatar
Aug 10, 2025
[SQL문제풀기] 데이터 정렬하기
Contents
문제SQLite

문제

SQLite

내가 작성한 정답

: sqlite도 asc 생략 가능
select * from points where quartet = 'I' order by y asc;
select * from points where quartet = 'I' order by y;
Share article

silver