Create Sequence Tool

The Create Sequence Tool allows users to visually create sequences.

Note: RazorSQL does not provide the Create Sequence tool for all databases.

The Create Sequence Tool allows users to create sequences and specify such information as the name of the sequence, the number to start with, the number to increment by, etc. RazorSQL provides different options for depending on the database.

The following is an example of the SQL generated from the Create Sequence Tool for a PostgreSQL database

CREATE SEQUENCE public.test_sequence3
INCREMENT BY 1
MINVALUE 1
MAXVALUE 1000
START WITH 1
CYCLE

The following are links to information about the Create Table tool for specific databases:

DB2 Create Sequence
Firebird Create Sequence
HSQLDB Create Sequence
Informix Create Sequence
Ingres Create Sequence
Oracle Create Sequence
PostgreSQL Create Sequence