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

ORACLE uuid自动生成主键

时间:2014-05-07 23:18:29      阅读:455      评论:0      收藏:0      [点我收藏+]

标签:oracle   uuid   

-- Create table
create table TECHNOLOGYCOMPANY
(
  ID              VARCHAR2(32) default SYS_GUID() not null,
  FLOWID          VARCHAR2(50),
  CONPANYID       NUMBER,
  ISCOMMUNICATION VARCHAR2(10)
)
tablespace USERS
  pctfree 10
  initrans 1
  maxtrans 255
  storage
  (
    initial 64K
    minextents 1
    maxextents unlimited
  );
-- Add comments to the table 
comment on table TECHNOLOGYCOMPANY
  is ‘技术交流的交流公司‘;
-- Add comments to the columns 
comment on column TECHNOLOGYCOMPANY.FLOWID
  is ‘申请编号‘;
comment on column TECHNOLOGYCOMPANY.CONPANYID
  is ‘竞争对手ID‘;
comment on column TECHNOLOGYCOMPANY.ISCOMMUNICATION
  is ‘是否交流‘;
-- Create/Recreate primary, unique and foreign key constraints 
alter table TECHNOLOGYCOMPANY
  add constraint SYS_TECHNOLOGYCOMPANY primary key (ID)
  using index 
  tablespace USERS
  pctfree 10
  initrans 2
  maxtrans 255
  storage
  (
    initial 64K
    minextents 1
    maxextents unlimited
  );

ORACLE uuid自动生成主键,布布扣,bubuko.com

ORACLE uuid自动生成主键

标签:oracle   uuid   

原文地址:http://blog.csdn.net/jrainbow/article/details/25210905

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