Re: Generating serial number column

From: Gary Stainburn <gary(dot)stainburn(at)ringways(dot)co(dot)uk>
To: Mintoo Lall <tlqmail(at)yahoo(dot)com>, pgsql-sql(at)postgresql(dot)org
Subject: Re: Generating serial number column
Date: 2003-02-13 16:40:46
Message-ID: 200302131640.46853.gary.stainburn@ringways.co.uk
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

On Thursday 13 Feb 2003 4:21 pm, Mintoo Lall wrote:
> Hi Everybody ,
>
> Is there a way in postgresql by which I can generate serial number column
> for the resultset. I wanted the resulset to look like below
>
>
> sno Name
> -------------------
> 1 JOE
> 2 JOHN
> 3 MARY
> 4 LISA
> 5 ANN
> 6 BILL
> 7 JACK
> 8 WILL
> 9 GEORGE
> 10 NANCY
> 11 JANE
> . .
> . .
> . .
>
> My query is basically select * name from tblcontact. I wanted to generate
> the column "sno" which basically numbers each row returned. Any help is
> appreciated.
> Regards,
> Tarun

create sequence myseq;
select nextval('myseq'), name from tblcontact;
drop sequence myseq;

There may well be a way to do it without the sequence, bit I can't think of
one.

Gary

>
>
>
> ---------------------------------
> Do you Yahoo!?
> Yahoo! Shopping - Send Flowers for Valentine's Day

--
Gary Stainburn

This email does not contain private or confidential material as it
may be snooped on by interested government parties for unknown
and undisclosed purposes - Regulation of Investigatory Powers Act, 2000

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message V. Cekvenich 2003-02-13 16:45:38 table Pivot
Previous Message piuschan 2003-02-13 16:35:14 pg_restore fails when restoring a database view