如何在Arel中执行包含“where exists”的查询?例如,在这样的查询中,显示至少有一个订单的所有供应商:
SELECT * FROM suppliers WHERE EXISTS (SELECT * FROM orders WHERE suppliers.supplier_id = orders.supplier_id);
我在Arel docs 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