0

How to write subqueries in Rails like this?:

select
    m.field1,
    m.field2,
    (select count(*) from details1 d1 where d1.id=m.field3) as count1,
    (select count(*) from details2 d2 where d2.id=m.field4) as count2,
    (select count(*) from details3 d3 where d3.id=m.field5) as count3
from
    master m

Database server is PostgreSQL.

1 Answer 1

3
class Master < ActiveRecord::Base
  set_table_name "master"
end
masters = Master.select(%Q"master.field1, master.field2,
(select count(*) from details1 d1 where d1.id=m.field3) as count1,
(select count(*) from details2 d2 where d2.id=m.field4) as count2,
(select count(*) from details3 d3 where d3.id=m.field5) as count3").all
Sign up to request clarification or add additional context in comments.

3 Comments

NoMethodError: undefined method `set_table_name' for Master:Class (Rails 3.2.3)
It seems that the select itself is able to accept an arbitrary SQL string. Thank you for the clue. A bookmark for myself: stackoverflow.com/questions/10374105/…
Should have included inheritance from AR. I'll edit my answer.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.