Table of Contents
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;