Oracle 创建自动增长列

create   table   a(a   number);  
  create   sequence   SEQ_a  
  minvalue   1  
  maxvalue   999999999999999999999999999  
  start   with   21  
  increment   by   1  
  cache   20;  
  insert   into   a   values(seq_a.nextval);
原文地址:https://www.cnblogs.com/lingxzg/p/1238673.html