MAX 값 가져오기 대체 방법 문의 드립니다.
아래와 같이 하시면 됩니다.
create serial s_no
현재값은 아래와 같이 반영합니다.
update db_serial set current_val = (select max(?) from ...) where name = \'s_no\'
기존의 select max(?)+1 ... 의 질의는 아래와 같이 변경합니다.
select s_no.next_value from db_root
>MAX 값 가져오기 대체 방법 문의 드립니다.