티스토리 뷰
같은듯 다른
MSSQL과 ORACLE의
MERGE 구문 비교
<Merge 테이블>
icki_base_tmp 테이블데이터를
icki_base 테이블에 merge 할 경우,
1) MSSQL
merge into icki_base a
using icki_base_tmp b
on (a.c_no = b.c_no
and a.cm_acct_no = b.cm_acct_no)
when matched and a.cr_acid_no = '1' then
update set ct_id_no = b.ct_id_no
, cr_acid_no = b.cr_acid_no
when matched and a.cr_acid_no = '2' then
delete
when not matched then
insert (c_no, cm_acct_no, ct_id_no, cr_acid_no)
values (b.c_no, b.cm_acct_no, b.ct_id_no, b.cr_acid_no);
2) Oracle
merge into icki_base a
using icki_base_tmp b
on (a.c_no = b.c_no
and a.cm_acct_no = b.cm_acct_no) -- 괄호가 없으면 인식 잘 못함
when matched then
update set ct_id_no = b.ct_id_no
, cr_acid_no = b.cr_acid_no
where a.cntr_acct_id_no = '1'
delete
where a.cntr_acct_id_no = '2'
when not matched then
insert (c_no, cm_acct_no, ct_id_no, cr_acid_no)
values (b.c_no, b.cm_acct_no, b.ct_id_no, b.cr_acid_no);
'Database' 카테고리의 다른 글
ORACLE ALL_TABLES 에서 SELECT문 추출 (0) | 2019.03.25 |
---|---|
ORACLE DB LINK 조회 및 사용 (0) | 2019.03.25 |
ORACLE 시스템 뷰 목록 (0) | 2019.03.21 |
스키마 체크 및 Dynamic SQL 실행 (0) | 2019.03.19 |
MSSQL에서 ORACLE로 Query전환 (0) | 2019.03.19 |
- Total
- Today
- Yesterday
- for구문
- 가로세로
- 매크로
- 엑셀 암기장
- macro
- 엑셀
- 데이터유효성검사
- SUM함수
- 시트명변경하기
- 문서맨끝라인찾기
- 엑셀 sumif 한수
- 엑셀 매크로
- 여러조건합계
- 다중조건부합계
- all_tables
- COUNTIF함수
- 엑셀함수
- 유효성검사
- oracle
- 엑셀 몫
- 시트추가하기
- 엑셀 영어단어
- MSSQL
- 함수
- 엑셀 사자성어
- 엑셀 숫자변환
- 엑셀 sum함수
- 입력값제한
- 엑셀 나누기
- 엑셀셀서식
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |