create or replace trigger tri_test
before insert on test
for each row
declare
begin
  if :new.uuid is null then
    :new.uuid:=sys_guid();
  end if;
end tri_test;

 

相关文章:

  • 2022-01-01
  • 2022-12-23
  • 2022-03-05
  • 2021-09-17
  • 2022-12-23
  • 2022-01-14
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-11-29
  • 2022-12-23
  • 2022-12-23
  • 2021-07-01
  • 2022-03-04
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案