当前位置:Gxlcms > 数据库问题 > oracle 中使用触发器自动生成UUID

oracle 中使用触发器自动生成UUID

时间:2021-07-01 10:21:17 帮助过:2人阅读

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;

 

oracle 中使用触发器自动生成UUID

标签:

人气教程排行