update or insert 를 처리할 수 있는 upsert 문에서 다 건의 데이터를 처리할 순 없었다. 2개의 List 객체를 초기화 하고 신규 데이터와 기존 데이터로 분리, 그리고 각각 일괄로 처리 하였다. update multi rows sample 1 update test as t set--업데이트 하고자 하는 테이블 t column_a = c.column_a from ( values ('123', 1),--업데이트 데이터 row_1 ('345', 2) --업데이트 데이터 row_2 ) as c (column_b, column_a) --업데이트 가져오는 테이블 c where c.column_b = t.column_b; update multi rows sample 2 update test as t..