|
DROP SEQUENCENameDROP SEQUENCE — Removes an existing sequenceDROP SEQUENCE name [, ...] Inputs
Outputs
DescriptionDROP SEQUENCE removes sequence number generators from the data base. With the current implementation of sequences as special tables it works just like the DROP TABLE statement. NotesThe DROP SEQUENCE statement is a Postgres language extension. Refer to the CREATE SEQUENCE statement for information on how to create a sequence. UsageTo remove sequence serial from database: DROP SEQUENCE serial; CompatibilitySQL92There is no DROP SEQUENCE in SQL92. |
|||||||||||||||||
With any suggestions or questions please feel free to contact us |