Re: How to INSERT empty line into SEQUENTIAL table from PHP - Mailing list pgsql-general

From A. Kretschmer
Subject Re: How to INSERT empty line into SEQUENTIAL table from PHP
Date
Msg-id 20080616065350.GC26025@a-kretschmer.de
Whole thread Raw
In response to How to INSERT empty line into SEQUENTIAL table from PHP  (Stefan Schwarzer <stefan.schwarzer@grid.unep.ch>)
Responses Re: How to INSERT empty line into SEQUENTIAL table from PHP  (Tino Wildenhain <tino@wildenhain.de>)
List pgsql-general
am  Mon, dem 16.06.2008, um  8:33:27 +0200 mailte Stefan Schwarzer folgendes:
> Hi,
>
> rahter dump question, I guess....
>
> But I have a table with a sequential index field, into which I would
> like to add from time to time another line (via webbrowser), which in
> turn, stays first empty, before it's being filled in later (via
> webbrowser).
>
> Because the ID field is sequential and indexed, I can't use
>
>     INSERT INTO table_xx (ID, field2, field3, field4) VALUES ('', '',
>     '',  '');
>
> neither (skipping ID because it should be filled in automatically):
>
>     INSERT INTO table_xx (field2, field3, field4) VALUES ('', '', '');

insert into table_xx (id, field2, ...) values (NULL, ...)


Andreas
--
Andreas Kretschmer
Kontakt:  Heynitz: 035242/47150,   D1: 0160/7141639 (mehr: -> Header)
GnuPG-ID:   0x3FFF606C, privat 0x7F4584DA   http://wwwkeys.de.pgp.net

pgsql-general by date:

Previous
From: Stefan Schwarzer
Date:
Subject: How to INSERT empty line into SEQUENTIAL table from PHP
Next
From: Julius Tuskenis
Date:
Subject: Re: How to INSERT empty line into SEQUENTIAL table from PHP