vote up 0 vote down star

I want set some constraint to the serial type,it only produce even or odd numbers.

flag

17% accept rate

2 Answers

vote up 1 vote down

Simply, set your serial to increment by 2, and to start on either 1 or 2 for producing either odd or even number:

Odd

CREATE SEQUENCE odd_seq INCREMENT BY 2 START WITH 1;

Even

CREATE SEQUENCE even_seq INCREMENT BY 2 START WITH 2;
link|flag
could I change the default create sequence increment by 2? – yjfuk Aug 15 at 15:43
vote up 2 vote down

SERIAL is a syntax sugar around creating and using sequences.

So you could do it all manually and create a special type of sequence that suits your needs:

CREATE SEQUENCE tablename_colname_seq INCREMENT BY 2 START WITH 2;

CREATE TABLE tablename (
    colname integer NOT NULL DEFAULT nextval('tablename_colname_seq');

ALTER SEQUENCE tablename_colname_seq OWNED BY tablename.colname;

Or if you already have a table and a SERIAL column you could change the underlying sequence:

ALTER SEQUENCE tablename_colname_seq INCREMENT BY 2;

The name of the underlying sequence could be retrieved by "describing" the table using psql:

\d tablename
link|flag
I already have a sequence, and curval is 3,but I want to product even numbers 4,6,8,10... – yjfuk Aug 15 at 16:46

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.