Avec Postgres 9.4, cela peut être fait un peu plus court:
select c.*
from comments c
join (
select *
from unnest(array[43,47,42]) with ordinality
) as x (id, ordering) on c.id = x.id
order by x.ordering;
Ou un peu plus compact sans table dérivée:
select c.*
from comments c
join unnest(array[43,47,42]) with ordinality as x (id, ordering)
on c.id = x.id
order by x.ordering
Suppression de la nécessité d'attribuer / maintenir manuellement une position à chaque valeur.
Avec Postgres 9.6, cela peut être fait en utilisant array_position()
:
with x (id_list) as (
values (array[42,48,43])
)
select c.*
from comments c, x
where id = any (x.id_list)
order by array_position(x.id_list, c.id);
Le CTE est utilisé de sorte que la liste de valeurs ne doit être spécifiée qu'une seule fois. Si ce n'est pas important, cela peut également être écrit comme suit:
select c.*
from comments c
where id in (42,48,43)
order by array_position(array[42,48,43], c.id);