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
« March 2024 »
March
MoTuWeThFrSaSu
123
45678910
11121314151617
18192021222324
25262728293031