Re: How to insert with a serial

From: "Dave Cramer" <Dave(at)micro-automation(dot)net>
To: "'Mitch Vincent'" <mvincent(at)cablespeed(dot)com>, <pgsql-general(at)postgresql(dot)org>
Subject: Re: How to insert with a serial
Date: 2001-10-22 20:18:50
Message-ID: 017e01c15b36$c370dd80$8201a8c0@inspiron
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

No, inserting a null will not work, it will insert the null

Dave

-----Original Message-----
From: pgsql-general-owner(at)postgresql(dot)org
[mailto:pgsql-general-owner(at)postgresql(dot)org] On Behalf Of Mitch Vincent
Sent: October 22, 2001 2:02 PM
To: pgsql-general(at)postgresql(dot)org
Subject: Re: [GENERAL] How to insert with a serial

insert 'ing a NULL in place of the serial will work too, yes?

INSERT INTO DEVICES (my_serial_id, name, type, ownerteamid) VALUES
(NULL,'scoobydoo', 1, 43);

-Mitch

----- Original Message -----
From: "Ian Harding" <ianh(at)tpchd(dot)org>
To: <elwood(at)agouros(dot)de>; <pgsql-general(at)postgresql(dot)org>
Sent: Monday, October 22, 2001 12:43 PM
Subject: Re: [GENERAL] How to insert with a serial

> Specify all fields except the serial field in your insert so it will
> use
the default (sequence number) value.
>
> INSERT INTO DEVICES (name, type, ownerteamid) VALUES ('scoobydoo', 1,
> 43)
>
> One funny thing about serial fields is that you CAN insert a value
> into
them, but the sequence has no idea what you did, so it will merrily
assign the next value it knows about when you don't provide a value,
potentially causing a conflict. Therefore, don't do that. Always let
the value be assigned as above.
>
> PS Check out Bruce's book!
>
> Ian A. Harding
> Programmer/Analyst II
> Tacoma-Pierce County Health Department
> (253) 798-3549
> mailto: ianh(at)tpchd(dot)org
>
> >>> Konstantinos Agouros <elwood(at)agouros(dot)de> 10/21/01 06:16AM >>>
> Hi,
>
> I have a table defined like this:
>
> Attribute | Type | Modifier
> -------------+-----------------------+--------------------------------
> -------------+-----------------------+----
------
> name | character varying(40) |
> type | integer |
> id | integer | not null default
nextval('serial'::text)
> ownerteamid | integer |
> Index: devices_pkey
>
> How do I insert into it so that id is automatically incremented?
>
> Konstantin
> --
> Dipl-Inf. Konstantin Agouros aka Elwood Blues. Internet:
> elwood(at)agouros(dot)de Otkerstr. 28, 81547 Muenchen, Germany. Tel +49 89
> 69370185
>
------------------------------------------------------------------------
--
--
> "Captain, this ship will not survive the forming of the cosmos."
> B'Elana
Torres
>
> ---------------------------(end of
> broadcast)---------------------------
> TIP 1: subscribe and unsubscribe commands go to
majordomo(at)postgresql(dot)org
>
>
> ---------------------------(end of
> broadcast)---------------------------
> TIP 3: if posting/reading through Usenet, please send an appropriate
> subscribe-nomail command to majordomo(at)postgresql(dot)org so that your
> message can get through to the mailing list cleanly
>

---------------------------(end of broadcast)---------------------------
TIP 4: Don't 'kill -9' the postmaster

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Gerhard Pfeiffer 2001-10-22 20:34:19 pl/python, plpy and nrows()
Previous Message Tom Lane 2001-10-22 20:07:44 Re: [GENERAL] To Postgres Devs : Wouldn't changing the select limit