DROP SEQUENCE
Removes a sequence.
Synopsis
DROP SEQUENCE [IF EXISTS] <name> [, ...] [CASCADE | RESTRICT]
Description
DROP SEQUENCE
removes a sequence generator table. You must own the sequence to drop it (or be a superuser).
Parameters
Examples
Remove the sequence myserial
:
DROP SEQUENCE myserial;
Compatibility
DROP SEQUENCE
is fully conforming with the SQL standard, except that the standard only allows one sequence to be dropped per command. Also, the IF EXISTS
option is a HAWQ extension.