티스토리 뷰
티베로(Tibero) 오라클(Oracle)
[오라클] having, 중복건중 1건만 남기고 싶을때. rowid를 이용한 중복건 삭제
xemaker 2018. 10. 10. 10:36우선 오라클 having 에 관해 살펴보면
select emp
from EMP
group by emp
having count(*) > 1
;
이러면 emp가 2건 이상인것 만 출력된다.
이것에 이어서 중복건 중 1건만 남기고 싶을 때가 있다.
ROW마다 있는 ROWID를 이용해 중복건 삭제하는 방법을 살펴보자.
select emp
,count(*) over (partition by emp) as cnt
from 테이블명
하면 전체 ROW에 대한 중복 갯수가 출력된다.
select a.* from(
select emp
,count(*) over (partition by emp) as cnt
,rowid
,row_number() over(partition by emp order by emp desc) rn
from 테이블명
order by cnt desc, rn asc
) a
where rn >1
;
하면 중복건 중 2건 이상인것들에 대한 rowid가 출력된다.
그럼 이 건들만 삭제하면 중복건중 1개만 남는다.
select 대신 delete로 바꿔준다.
delete from
테이블명
where rowid in(
select rowid from
(
select emp
,count(*) over (partition by emp) as cnt
,rowid
,row_number() over(partition by emp order by emp desc) rn
from 테이블명
order by cnt desc, rn asc
) a
where rn >1
)
;
'티베로(Tibero) 오라클(Oracle)' 카테고리의 다른 글
오라클 트리구조 정렬 (0) | 2019.01.25 |
---|---|
오라클 트리구조에서 검색 (0) | 2019.01.25 |
[오라클] ora-00001: unique constraint violated. unique index 삭제 (0) | 2018.10.10 |
오라클 그룹 최근 1건 (0) | 2018.09.17 |
select insert 쿼리 사용 시 ora-00913: too many values 에러 (0) | 2018.06.29 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 자바
- EC
- xe애드온
- 스크래핑
- 포인터
- ocpjp
- 파이썬
- 인포믹스
- Python
- KG
- php
- ocjap
- 오라클
- 이클립스
- proc
- esql
- JDBC
- 플러터
- XE3
- C언어
- 자바 smtp
- webix
- MySQL
- XE
- 프로씨
- 파싱
- 문자열
- xe addon
- C
- ocajp
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
글 보관함