8 lines
165 B
MySQL
8 lines
165 B
MySQL
create or replace TRIGGER "BIU_TB_26AI_TECH_V2"
|
|
before insert or update
|
|
on TB_26AI_TECH_V2
|
|
for each row
|
|
begin
|
|
:new.ID_INSIGHT := SEQ_26AI_TECH.NEXTVAL;
|
|
end;
|
|
/ |