순서가 있는 엑토
postgres를 사용하는 가장 좋은 솔루션은 WITH ORDINALITY입니다.
SELECT p.*
FROM posts p
JOIN unnest('{1,2,4,3}'::int[]) WITH ORDINALITY t(id, ord) USING (id)
ORDER BY t.order;
쿼리 완료
def list_post_where_id_in_order(ids) do
query =
from post in Post,
inner_join:
ordinality in fragment(
"SELECT * FROM UNNEST(?::int[]) WITH ORDINALITY as ordinality (id, num)",
^ids
),
on: post.id == ordinality.id,
order_by: [asc: ordinality.num]
Repo.all(query)
end
iex> list_post_where_id_in_order([1, 2, 4, 3])
구성 가능한 쿼리
def post_by_id_in_order(query, ids) do
query
|> join(
:inner,
[post],
ordinality in fragment(
"SELECT * FROM UNNEST(?::int[]) WITH ORDINALITY as ordinality (id, num)",
^ids
),
on: post.id == ordinality.id,
as: :ordinality
)
|> order_by([post, ordinality: ordinality], asc: ordinality.num)
end
iex> Post |> post_by_id_in_order([1, 2, 4, 3]) |> Repo.all()
Reference
이 문제에 관하여(순서가 있는 엑토), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/mrdotb/ecto-with-ordinality-3b70텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)