Re: Ordering returned rows according to a list

Поиск
Список
Период
Сортировка
От Adam Rich
Тема Re: Ordering returned rows according to a list
Дата
Msg-id 005801c9645b$4d7785d0$e8669170$@r@sbcglobal.net
обсуждение исходный текст
Ответ на Ordering returned rows according to a list  (Sebastian Tennant <sebyte@smolny.plus.com>)
Список pgsql-general
>
> Hi all,
>
> I'd like to make a single query that returns a number of rows using a
> 'WHERE id IN (<list-of-ids>)' condition, but I'd like the rows to be
> returned in the order in which the ids are given in the list.
>
> Is this possible?
>

Depending on how many IDs you have in your list, you can accomplish this
with a CASE statement:

SELECT *
FROM MYTABLE
WHERE id IN (6, 9, 3)
ORDER BY CASE id
WHEN 6 then 1
WHEN 9 then 2
WHEN 3 then 3 END










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

Предыдущее
От: Christophe
Дата:
Сообщение: Re: How are locks managed in PG?
Следующее
От: Sebastian Tennant
Дата:
Сообщение: Re: Ordering returned rows according to a list