Re: Line Numbering in SELRCT Output

From: "Paul" <magamos(at)mail(dot)ru>
To: pgsql-sql(at)postgresql(dot)org
Subject: Re: Line Numbering in SELRCT Output
Date: 2002-03-10 15:33:01
Message-ID: a6fu9s$2t5h$1@jupiter.hub.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

CREATE SEQUENCE seq1;

SELECT nextval('seq1'), amname FROM pg_am;

DROP SEQUENCE seq1;

"Hubert Palme" <hubert(dot)palme(at)web(dot)de> wrote in message
news:a6e70l$2o5p$1(at)jupiter(dot)hub(dot)org(dot)(dot)(dot)
> Hi,
>
> how can I get line numbers in the output of a select statement, e.g.
>
> No. | Name | ...
> -----+------------------+-------
> 1 | Meyer | ...
> 2 | Miller | ...
> 3 | Mueller | ...
> 4 | Smith | ...
>
> Thanks in advance,
> --
> Hubert Palme Am Walde 1
> 42119 Wuppertal
> <hubert(dot)palme(at)web(dot)de>

In response to

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message msn 2002-03-10 22:19:34 Referential integrity implementation - bug or user error?
Previous Message Hubert Palme 2002-03-09 23:48:38 Line Numbering in SELRCT Output