create table junk (col SERIAL);
INSERT INTO junk (col) VALUES (DEFAULT);ERROR: parser: parse error at or near "DEFAULT";
> INSERT INTO junk (col) VALUES (DEFAULT);> > Does that work for you?> > Ross>