Home MERGE
Post
Cancel

MERGE

MERGE

second table 또는 subquery에 있는 값들을 기반으로 테이블에 있는 값들을 Insert,update,delete.

이는 second table이 change log를 가지고 있고 new row, modified row, marked row(to be deleted)를 가지고 있을때 유용하다.

커멘드는 다음의 케이스들을 처리하는것을 지원한다.

  • Update,delete를 위해서 메치되는 값
  • insert를 위해서 메치되지 않는 값

Syntax

1
MERGE INTO <target_table> USING <source> ON <join_expr> { matchedClause | notMatchedClause } [ ... ]
This post is licensed under CC BY 4.0 by the author.

Trending Tags