본문 바로가기
WEB/SQL

[SQL] Distinct(중복제거)

by DeveloperCat 2023. 9. 17.
반응형

쉬운 거니 바로 예제를 보도록 하자.

 

select teamcode from center_code_tbl where k_tpo_cd in ('A10100','C10100','C20100')
/

 

 

select distinct teamcode from center_code_tbl where k_tpo_cd in ('A10100','C10100','C20100')
/

 

 

 

반응형

'WEB > SQL' 카테고리의 다른 글

[SQL] WHERE 1=1  (0) 2023.09.09
[SQL] UNION ALL  (0) 2023.09.09