How to do “where exists” in Arel

戏子无情 提交于 2019-11-30 04:55:44

Here you go:

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`))"

Though, an inner join would do this in a more simple - and eventually less performant - way :

Supplier.joins :orders

I think that you can neatly use a counter_cache for this one :

http://asciicasts.com/episodes/23-counter-cache-column

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!