데이터베이스
DATABASE STEP 6 - Column
★ 컬럼(Column) 컬럼 명시 select name, buseo from tblInsa; 연산 select name, basicpay, basicpay *2 as basicpay2 from tblInsa; 상수 select name, '홍길동' from tblInsa; ■ 1. distinct 컬럼 리스트에서 사용 중복값 제거 distinct 컬럼명 > distict 컬럼리스트 select * from tblCountry; -- 14개 국가가 각각 속한 대륙을 가져오시오. select continent from tblCountry; -- tblCountry에는 어떤 어떤 대륙이 있나요? > 종류? select distinct continent from tblCountry; -- tblInsa. > 이..