gpt4 book ai didi

sql - Arel中 "where exists"怎么办

转载 作者:数据小太阳 更新时间:2023-10-29 06:36:40 27 4
gpt4 key购买 nike

如何在 Arel 中执行包含“where exists”的查询?例如,在这样的查询中显示至少有一个订单的所有供应商:

SELECT *
FROM suppliers
WHERE EXISTS
(SELECT *
FROM orders
WHERE suppliers.supplier_id = orders.supplier_id);

我在 Arel 文档中看到“存在”http://rubydoc.info/gems/arel/2.0.7/Arel/Nodes/Exists但我在使用它时遇到了问题。

最佳答案

给你:

suppliers= Supplier.arel_table
orders= Order.arel_table
suppliers_with_orders = Supplier.where(
Order.where(orders[:supplier_id]
.eq(suppliers[:id])).exists).to_sql =>
"SELECT `suppliers`.* FROM `suppliers`
WHERE (EXISTS (SELECT `orders`.*
FROM `orders`
WHERE `suppliers`.`id` = `orders`.`supplier_id`))"

不过,内部联接会以更简单但最终性能更差的方式执行此操作:

Supplier.joins :orders

关于sql - Arel中 "where exists"怎么办,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6207139/

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