ALTER SEQUENCE modifies the parameters of an existing sequence.
Change the maximum value or home column of the sequence.
1 2 3 | ALTER SEQUENCE [ IF EXISTS ] name [ MAXVALUE maxvalue | NO MAXVALUE | NOMAXVALUE ] [ OWNED BY { table_name.column_name | NONE } ] ; |
Change the owner of a sequence.
1 | ALTER SEQUENCE [ IF EXISTS ] name OWNER TO new_owner; |
Sends a notification instead of an error when you are modifying a non-existing sequence.
Maximum value of a sequence. If NO MAXVALUE is declared, the default value of the ascending sequence is 263-1, and that of the descending sequence is -1. NOMAXVALUE is equivalent to NO MAXVALUE.
Associates a sequence with a specified column included in a table. In this way, the sequence will be deleted when you delete its associated field or the table where the field belongs.
If the sequence has been associated with another table before you use this parameter, the new association will overwrite the old one.
The associated table and sequence must be owned by the same user and in the same schema.
If OWNED BY NONE is used, existing associations will be deleted.
Specifies the user name of the new owner. To change the owner, you must also be a direct or indirect member of the new role, and this role must have CREATE permission on the sequence's schema.
Modify the maximum value of serial to 200.
1 | ALTER SEQUENCE serial MAXVALUE 200; |
Create a table, and specify default values for the sequence.
1 | CREATE TABLE T1(C1 bigint default nextval('serial')); |
Change the owning column of the serial sequence to T1.C1.
1 | ALTER SEQUENCE serial OWNED BY T1.C1; |