Switch to: V14V13V12V11V10V9V8V7V6V5

DROP SEQUENCE

DROP SEQUENCE command deletes a sequence from the database.

Syntax

DROP SEQUENCE [IF EXISTS] sequence_name

Arguments

[IF EXISTS]

Do not raise error in case there is no sequence with the specified name.

table_name

The name of the sequence to delete.

Examples

DROP SEQUENCE seqPersonID;