Re: How ad an increasing index to a query result? - Mailing list pgsql-general

From Raymond O'Donnell
Subject Re: How ad an increasing index to a query result?
Date
Msg-id 4ADB3BB7.40508@iol.ie
Whole thread Raw
In response to Re: How ad an increasing index to a query result?  (Alban Hertroys <dalroi@solfertje.student.utwente.nl>)
Responses Re: How ad an increasing index to a query result?
List pgsql-general
On 18/10/2009 11:30, Alban Hertroys wrote:

> Short of enumerating those results in your application, the easiest
> approach is probably to wrap your query in a join with generate_series
> like so:
>
> SELECT a, s.b
> FROM (
>     SELECT a
>     FROM table1
>     ORDER BY a DESC LIMIT 5
> ) AS t1, generate_series(5, 1, -1) AS s(b)
>

Won't that just give you the cartesian product of the two sets? I tried
something similar yesterday out of curiosity, and that's what I got.

The only things I can think of are (i) as you say, enumerate the results
in the application or (ii) use a temporary sequence as someone else
suggested.

Ray.

------------------------------------------------------------------
Raymond O'Donnell, Director of Music, Galway Cathedral, Ireland
rod@iol.ie
Galway Cathedral Recitals: http://www.galwaycathedral.org/recitals
------------------------------------------------------------------

pgsql-general by date:

Previous
From: Tom Lane
Date:
Subject: Re: Determining dead/unused space in a table?
Next
From: Simon Riggs
Date:
Subject: Re: Delete fails with out of memory