DROP SEQUENCE
Function
DROP SEQUENCE deletes a sequence from the current database.
Precautions
Only a sequence owner or a system administrator can delete a sequence.
Syntax
1
|
DROP SEQUENCE [ IF EXISTS ] {[schema.]sequence_name} [ , ... ] [ CASCADE | RESTRICT ]; |
Parameter Description
- IF EXISTS
Sends a notice instead of an error if the specified sequence does not exist.
- name
Specifies the name of the sequence.
- CASCADE
Automatically deletes objects that depend on the sequence to be deleted.
- RESTRICT
Refuses to delete the sequence if any objects depend on it. This is the default.
Examples
Delete the sequence serial:
1
|
DROP SEQUENCE serial; |
Helpful Links
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.