Syntax documentationcreate_sequence_statement Locate this document in the navigation structure

Syntax Syntax

  1. <create_sequence_statement> ::=
      CREATE SEQUENCE [<schema_name>.]<sequence_name>
        [INCREMENT BY <integer>]
        [START WITH <integer>
        [MAXVALUE <integer> | NOMAXVALUE]
        [MINVALUE <integer> | NOMINVALUE]
        [CYCLE | NOCYCLE]
        [CACHE <unsigned_integer> | NOCACHE]
        [ORDER | NOORDER]
End of the code.