Personal tools
You are here: Home Les outils logiciels SGBD Oracle Oracle - How create a sequence
Log in


Forgot your password?
 

Oracle - How create a sequence

Use

drop sequence <sequence_name>;
create sequence <sequence_name> start with <integer> increment by <integer>;

Example

drop sequence SEQ_EXAMPLE;
create sequence SEQ_EXAMPLE start with 1 increment by 1;

 

select * from ALL_SEQUENCES;
Document Actions
« May 2024 »
May
MoTuWeThFrSaSu
12345
6789101112
13141516171819
20212223242526
2728293031