데이터 쿼리잉 SELECT : 칼럼, 계산값 FROM : 테이블명 우선 use 사용할데이터시트이름; 으로 파일을 선택 select phone : phone 칼럼을 선택한다.. from customer 테이블. 데이터 정렬 ORDER BY : 데이터값을 규칙에 따라 정렬 select 칼럼 from 테이블 order by 칼럼명 asc; (오름차순,) 혹은 desc(내림차순) 데이터 필터링 WHERE – learn how to use the WHERE clause to filter rows based on specified conditions. 검색 조건을 부여 . and, or, not, TRUE, FALSE, UNKNOWN city = nyc 검색 city = nyc and state = ny 검색 SE..