码迷,mamicode.com
首页 > 数据库 > 详细

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

时间:2016-07-11 10:40:58      阅读:317      评论:0      收藏:0      [点我收藏+]

标签:

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;

 

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

标签:

原文地址:http://www.cnblogs.com/yshyee/p/5659340.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!