gpt4 book ai didi

elixir - 如何在 Ecto 中进行子查询?

转载 作者:行者123 更新时间:2023-12-05 01:20:02 30 4
gpt4 key购买 nike

我有两张 table ; list 和投标。我想使用 Ecto 列出所有最高出价高于 1 且低于 10 的列表。有关架构和查询的更多信息,请参阅下面的代码。

数据库模式

listings
id
name


bids
listing_id
amount

程序.ex

Repo.all(
from l in Listing,
where: (SELECT MAX(amount) FROM bids WHERE listing_id = l.id) > 1 and
(SELECT MAX(amount) FROM bids WHERE listing_id = l.id) < 10)

人们会怎么做呢?

最佳答案

作为 group_by/having 查询:

Repo.all(
from l in Listing,
join: b in assoc(l, :bids),
group_by: l.id,
having: (max(b.amount) > 1) and (max(b.amount) < 10)
select: l)

关于elixir - 如何在 Ecto 中进行子查询?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48268151/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com