मान लें कि आपकी तालिका को t1
. कहा जाता है और आपकी प्राथमिक कुंजी को id
. कहा जाता है
सबसे पहले, अनुक्रम बनाएं:
create sequence t1_seq start with 1 increment by 1 nomaxvalue;
फिर एक ट्रिगर बनाएं जो डालने पर बढ़ता है:
create trigger t1_trigger
before insert on t1
for each row
begin
select t1_seq.nextval into :new.id from dual;
end;