Re: Is it possible to make the order of output the same as the order of input parameters?

Поиск
Список
Период
Сортировка
От Sam Mason
Тема Re: Is it possible to make the order of output the same as the order of input parameters?
Дата
Msg-id 20100602143315.GR20550@samason.me.uk
обсуждение исходный текст
Ответ на Re: Is it possible to make the order of output the same as the order of input parameters?  (David Fetter <david@fetter.org>)
Ответы Re: Is it possible to make the order of output the same as the order of input parameters?  (David Fetter <david@fetter.org>)
Re: Is it possible to make the order of output the same as the order of input parameters?  ("A. Kretschmer" <andreas.kretschmer@schollglas.com>)
Список pgsql-general
On Wed, Jun 02, 2010 at 06:28:14AM -0700, David Fetter wrote:
> On Tue, Jun 01, 2010 at 06:16:06PM -0400, m. hvostinski wrote:
> > I have a simple query like:
> >
> > SELECT * FROM customer WHERE id IN (23, 56, 2, 12, 10)
> >
> > The problem is that I need to retrieve the rows in the same order as
> > the set of ids provided in the select statement.  Can it be done?
>
> Sure, but it can be a little cumbersome to set up at first.
>
> WITH
>     t(a) AS (VALUES (ARRAY[23, 56, 2, 12, 10])),
>     s(i) AS (SELECT generate_subscripts((SELECT a FROM t)::integer[], 1))
> SELECT i, a[i]
> FROM s CROSS JOIN t;

Isn't this fun; here's another version using window functions (from PG
8.4 onwards) this time:

  SELECT c.*
  FROM customer c, (
    SELECT *, row_number() OVER ()
    FROM (VALUES (23), (56), (2), (12), (10)) x) x(val,ord)
  WHERE c.id = x.val
  ORDER BY x.ord;

--
  Sam  http://samason.me.uk/

В списке pgsql-general по дате отправления:

Предыдущее
От: Tom Wilcox
Дата:
Сообщение: Re: Out of Memory and Configuration Problems (Big Computer)
Следующее
От: Tom Lane
Дата:
Сообщение: Re: Statement Pooling