Re: insert a sequence - Mailing list pgsql-sql

From Ireneusz Pluta
Subject Re: insert a sequence
Date
Msg-id 46443F5F.7060603@wp.pl
Whole thread Raw
In response to insert a sequence  (ivan marchesini <marchesini@unipg.it>)
List pgsql-sql
ivan marchesini napisał(a):
> Dear postgres Users,
> I have a simple question I think.
> I have a table that contains some columns
> one of these columns (the columns ID) contains distinct integer
> values ...
> I need to insert into this table some other records but I only need that
> values were inserted into the ID column and that they were
> progressive... (a sequence starting from 100 and ending to 300, step=1) 
> the other columns must remains null....
> can I do this with a sequence and then an "insert into"?
>
> many thanks 
>
>
>
>
>   
INSERT INTO your_table (id) SELECT generate_series(100, 300, 1);

-> http://www.postgresql.org/docs/8.2/interactive/functions-srf.html



pgsql-sql by date:

Previous
From: chester c young
Date:
Subject: Re: Count rows by day interval
Next
From: Gábriel Ákos
Date:
Subject: PL/PGSQL Record type question