본문 바로가기

명사 美 비격식 (무리 중에서) 아주 뛰어난[눈에 띄는] 사람[것]

Database/SQL Developer

Oracle sql 데이터 중복제거 DISTINCT

중복제거 DISTINCT, select 다음에 추가한다.

*중복된 데이터를 제거하는것이 아닌, 결과물에서의 중복된 데이터를 제거해 반환한다.

select DISTINCT  t.*
          from(
          select g.*,d.fileName from t_shopping_goods g, t_goods_detail_image d
          where g.goods_id=d.goods_id 
          and d.filetype='main_image'
          and goods_sort='디지털'
          order by g.goods_creDate desc)  t
          where   rowNum <7