Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7068991
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T05:23:29+00:00 2026-05-28T05:23:29+00:00

I have two models Horse and Race. class Horse < ActiveRecord::Base has_many :races end

  • 0

I have two models Horse and Race.

class Horse < ActiveRecord::Base
has_many :races
end

class Race < ActiveRecord::Base
belongs_to :horse
end

Now I want to use the new rails 3 query interface to see the Horse name and all its races.

Horse.joins(:races)  # I get an active record relation that only displays horse data

Horse.joins(:races).count #Yields 31 the exact number of races.

Horse.joins(:races).all #Yields an Array of 31 Horse, but no race data

Horse.joins(:races).all.select("horses.*, starters.*") #Yields active record relation with only Horse data.

Question 1: What’s the correct query to yield complete horse and race records.

Question 2: What’s the correct query to yield the horse name and all of the race record.

I know this is very basic, but I’m stumped. I sense I’d doing something wrong with the relation.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T05:23:30+00:00Added an answer on May 28, 2026 at 5:23 am

    From what I can see I don’t thing you’re doing anything wrong with your relations.

    If you want to see all horses with each of their races:

    Horse.includes(:races).each do |horse|
      puts horse.name
      horse.races.each do |race|
        puts race.name
      end
    end
    

    Assuming I understand your question, your use of joins(:races) is irrelevant here. First, it will not automatically pull any data from the races table. It will simply add an inner join between horses and races. If horse N has 10 races, that query will then return 10 instances of horses N, which is probably not useful in this instance.

    The includes(:races) above isn’t strictly necessary – it just loads all the races at once with one query, as opposed to n queries (n being the number of horses). Just saves time and resources.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have two models: class Member < ActiveRecord::Base has_many :member_tags end and class MemberTag
I have two models class Subscription < ActiveRecord::Base belongs_to :client end class Client <
I have two models: Company and Person class Person < ActiveRecord::Base belongs_to :company end
I have two models as follows: class Game << ActiveRecord::Base has_many :bells end class
I have two models. order and line_item. class Order < ActiveRecord::Base has_many :line_items has_many
I have two models Company and Role related by has_many and belongs_to association respectively.
I have two models: Books and Authors. Books has_many Authors Authors belongs_to Books Problem
I have two Models called User and Membership. User has_many :memberships Membership belongs_to :user
I have two models than inherited from the same abstract base class. I would
I have two models ForumThread and Post set-up like this: class ForumThread < ActiveRecord::Cached

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.