Re: How to INSERT empty line into SEQUENTIAL table from PHP
От | A. Kretschmer |
---|---|
Тема | Re: How to INSERT empty line into SEQUENTIAL table from PHP |
Дата | |
Msg-id | 20080616065350.GC26025@a-kretschmer.de обсуждение исходный текст |
Ответ на | How to INSERT empty line into SEQUENTIAL table from PHP (Stefan Schwarzer <stefan.schwarzer@grid.unep.ch>) |
Ответы |
Re: How to INSERT empty line into SEQUENTIAL table from
PHP
|
Список | 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 по дате отправления: