Removes a sequence.
DROP SEQUENCE [IF EXISTS] <name> [, ...] [CASCADE | RESTRICT]
DROP SEQUENCE
removes sequence number generators. You must own the sequence to drop it (or be a superuser).
Remove the sequence myserial
:
DROP SEQUENCE myserial;
DROP SEQUENCE
conforms to the SQL standard, except that the standard allows only one sequence to be dropped per command. Also, the IF EXISTS
option is a Greenplum Database extension.
ALTER SEQUENCE, CREATE SEQUENCE
Parent topic: SQL Commands