admin 2023.12.02 16:24 Views : 76
declare
NEW_MEMBER_ID NUMBER;
begin
select (MAX(MEMBER_ID) +2 ) into NEW_MEMBER_ID FROM MEMBERS ;
:P7_NEW_MEMBER_ID := NEW_MEMBER_ID;
end;