Campbell, Lance wrote:
I created the following table:

create table xyz (
n serial, abc character varying, constraint n_pkey primary key (n));

Each time I do an insert:

insert into xyz(abc) values('adf6');

The field n is not random but is sequential.  Is there something I
should do to make the serial number random?

Thanks,



Why do you want a random number? Would a guid work?

Paul


--
Sent via pgsql-sql mailing list (pgsql-sql@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-sql

Reply via email to