Con Postgres 9.4 questo può essere fatto un po 'più breve:
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;
O un po 'più compatto senza una tabella derivata:
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
Rimozione della necessità di assegnare / mantenere manualmente una posizione per ciascun valore.
Con Postgres 9.6 questo può essere fatto usando 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);
Il CTE viene utilizzato in modo tale che l'elenco di valori debba essere specificato una sola volta. Se ciò non è importante, questo può anche essere scritto come:
select c.*
from comments c
where id in (42,48,43)
order by array_position(array[42,48,43], c.id);