Re: Insert Question - Mailing list pgsql-novice

From A. Kretschmer
Subject Re: Insert Question
Date
Msg-id 20061102201828.GA8502@a-kretschmer.de
Whole thread Raw
In response to Insert Question  (<operationsengineer1@yahoo.com>)
List pgsql-novice
am  Thu, dem 02.11.2006, um 12:01:51 -0800 mailte operationsengineer1@yahoo.com folgendes:
> hhi all,
>
> long time no askie question, but here goes...
>
> i want to insert sequential document numbers into a
> products table
>
> my current setup is like so:
>
> product_number document_number
> 1001
> 1002
> 1006
> 1005
>
> i want an insert statement that will yield the
> following:
>
> product_number document_number
> 1001           42000001
> 1002           42000002
> 1006           42000003
> 1005           42000004

Create a sequence that starts with 42000001, and insert
nextval('this_sequence') for this column. (document_number).


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

pgsql-novice by date:

Previous
From: Greg Lindstrom
Date:
Subject: Number of fields in split()
Next
From: "Davis, Sean \(NIH/NCI\) [E]"
Date:
Subject: Re: Insert Question