merge into 테이블 a using ( select rowid rid, 문서번호, row_number() over (order by 문서번호) rn from 테이블 where 문서번호 between 1 and xxx ) b on (a.rowid= b.rid) when matched then --update set 등록일 = to_date('2017-10-20','yyyy-mm-dd') + ((b.rn-1) * 1) -- 증가량 하루 update set 등록일 = to_date('2017-10-20','yyyy-mm-dd') + ((b.rn-1) * 2) -- 증가량 이틀