码迷,mamicode.com
首页 > 其他好文 > 详细

Oarcle之序列

时间:2019-04-26 19:32:16      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:数据   temp   sel   start   序号   incr   tar   oar   size   

序列:是一种数据库对象,用来自动产生一组唯一的序号;

序列:是一种共享式的对象,多个用户可以共同使用序列中的序号。

 

  创建序列

  create sequence seq_emp_temp

  increment by 1

  start with 1

 

  使用序列

  通过序列名.next_val

  select seq_emp_temp.nextval from dual;

  select seq_emp_temp.currval from dual;

  insert into emp_temp(empno) values(seq_emp_temp.nextval)

  select * from emp_temp;

 

Oarcle之序列

标签:数据   temp   sel   start   序号   incr   tar   oar   size   

原文地址:https://www.cnblogs.com/weishenme/p/10776107.html

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