order by 라는 함수를 이용하여 컬럼내에 데이터를 정렬 할 수 있으며 오름차순으로,내림차순으로 정렬 모두 가능하다 . select author_lname from books; (122번) autor_lname 이라는 컬럼의 데이터가 나열 되어있다. select author_lname from books order by author_lname asc;(131~133번) order by asc 를 이용하면 autor_lname 안에 데이터를 오름차순으로 정렬 할 수있다. ****(일반적으로 order by 만하여도 오름차순이 기준이기 때문에 asc 를 굳이 입력할 필요는 없다.) select author_lname from books order by author_lname desc; (128~129번)..