我想将sql查询转换为rails query
SQL:
select count(*),
{created_at {1}} {ACCOUNT_ID {1}} {占{1}} {GOOGLE_DOMAIN {1}} {created_at {1}} {created_at {1}}
我试过这个但是没有得到确切的结果。
我的部分解决方案::
from subscriptions where
在这里,我不知道如何使用群组和订单。
如果需要任何信息,请发表评论。提前致谢
答案 0 :(得分:0)
Subscription.joins(:account).order(“your need”)。group(“Your need”)。where(“accounts.google_domain IS NOT NULL”)。count
希望这会对你有所帮助