4 DROP SEQUENCE — remove a sequence
8 DROP SEQUENCE [ IF EXISTS ] name [, ...] [ CASCADE | RESTRICT ]
12 DROP SEQUENCE removes sequence number generators. A sequence can only
13 be dropped by its owner or a superuser.
18 Do not throw an error if the sequence does not exist. A notice
19 is issued in this case.
22 The name (optionally schema-qualified) of a sequence.
25 Automatically drop objects that depend on the sequence, and in
26 turn all objects that depend on those objects (see
30 Refuse to drop the sequence if any objects depend on it. This is
35 To remove the sequence serial:
40 DROP SEQUENCE conforms to the SQL standard, except that the standard
41 only allows one sequence to be dropped per command, and apart from the
42 IF EXISTS option, which is a PostgreSQL extension.
46 CREATE SEQUENCE, ALTER SEQUENCE