1. 기본적인 사용형태 select name -- attribute from instructor -- relation where dept_name = 'Comp.Sci.' and salary > 80000 -- predicate 2. distinct : 퀴리문은 중복된 값을 허용하기 때문에 중복을 제거할 경우 사용. select dept_name --12가지의 중복된 데이터, all 키워드가 생략된 형태 from instructor; select distinct dept_name --7가지의 중복없는 데이터 from instructor; 3. select 문에 4칙연산이 들어갈 수 있다 select ID, name, salary --저장된 salary 그대로 출력 from instructor; selec..