Use of the "Oracle" sequence sequence object

Source: Internet
Author: User

************************************************************************* * * * Original:blog.csdn.net/clark_xu Xu Changliang's Column************************************************************************

Sequence:Oracle can generate primary keys by sequence

1. Create a sequence

CREATE TABLE Foo (

foo_id Number (11),

Foo_value VARCHAR2 (50),

Constraint FOO_PK primary KEY (FOO_ID)

)

Creating a sequence DDL

Create sequence sequence name

[Start with value (10000)]

[Increment by value ]

Delete sequence DDL

drop sequence sequence name

2. View the sequence

Get the current sequence value by pseudo-column currval

To take the next value of a sequence value by pseudo-column nextval

Select Seq_foo.nextval from dual;

Select Seq_foo.currval from dual;

3. Using sequences as primary keys

INSERT into foo (foo_id,foo_value) VALUES (Seq.foo.nextval, ' Clark ');

Use of the "Oracle" sequence sequence object

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.