본문 바로가기

BackEnd/DataBase - Oracle

[Oracle] 중복을 제거해주는 DISTINCT 키워드

DISTINCT란?

중복된 값을 자동으로 제거해준다.

 

-- department_id의 중복된 데이터를 제거 후 출력

SELECT DISTINCT department_id
FROM employees;