Does Postgresql have a similar pseudo-column "ROWNUM" as Oracle? - Mailing list pgsql-sql

From
Subject Does Postgresql have a similar pseudo-column "ROWNUM" as Oracle?
Date
Msg-id DCD4903594CCF34CAFE200BDF3448D8D5B291A@tshuscodenmbx01.ERF.THOMSON.COM
Whole thread Raw
Responses Re: Does Postgresql have a similar pseudo-column "ROWNUM" as  (Scott Marlowe <smarlowe@g2switchworks.com>)
Re: Does Postgresql have a similar pseudo-column "ROWNUM" as Oracle?  (Andrew Sullivan <ajs@crankycanuck.ca>)
Re: Does Postgresql have a similar pseudo-column "ROWNUM" as Oracle?  (Bruno Wolff III <bruno@wolff.to>)
List pgsql-sql
Hi:

Oracle has a pseudo-column "ROWNUM" to return the sequence number in which a row was returned when selected from a
table.The first row ROWNUM is 1, the second is 2, and so on. 

Does Postgresql have a similar pseudo-column "ROWNUM" as Oracle? If so, we can write the following query:

select *
from (select RowNum, pg_catalog.pg_proc.*        from pg_catalog.pg_proc) inline_view
where RowNum between 100 and 200;


Thanks,
Dennis



pgsql-sql by date:

Previous
From: "Dmitri Bichko"
Date:
Subject: Re: interesting SQL puzzle - concatenating column with itself.
Next
From: Ezequiel Tolnay
Date:
Subject: Re: getting duplicate number is there a