SQL> create sequence deptno_seq
2 start with 50 increment by 10;
Sequence created.
SQL>
SQL> select deptno_seq.nextval, deptno_seq.currval
2 from dual;
NEXTVAL CURRVAL
---------- ----------
50 50
SQL>
SQL> select deptno_seq.currval
2 from dual;
CURRVAL
----------
50
SQL>
SQL> select deptno_seq.currval, deptno_seq.nextval
2 from dual;
CURRVAL NEXTVAL
---------- ----------
60 60
SQL>
SQL>
SQL> drop sequence deptno_seq;
Sequence dropped.
Note:-Please comment and reply me.
It contain detail about all language and oracle. Checkout stackoverflow profile :- http://stackoverflow.com/users/995197/sushant
Friday, August 6, 2010
Sequence Example 2
Subscribe to:
Post Comments (Atom)
0 comments:
Post a Comment