반응형 Work | 업무/데이터분석9 [SQL 스터디] 3일차 ORDER BY(DESC, ASC), DISTINCT, LIMIT, as ORDER BY: 정렬 구문 (DESC 오름차순, ASC 내림차순) DISTINCT: 중복 제거 LIMIT: 보여주는 데이터 개수 한계치 as: 테이블 명 변경 시 사용 1. Write a query to display the names of those students that are between the ages of 18 and 20. SELECT * FROM students WHERE age BETWEEN '18' AND '20' 2. Write a query to display all of those students that contain the letters "ch" in their name or their name ends with the letters "nd". SELECT * FROM s.. 2020. 3. 3. 이전 1 2 다음 반응형