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

  • SEARCH
  • Home
  • 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 6833803
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T23:01:36+00:00 2026-05-26T23:01:36+00:00

For the sake of simplifying my problem, let’s say we have three models; user

  • 0

For the sake of simplifying my problem, let’s say we have three models; user, flight, and plane. I want to show a table to the user of how many times they have flown each plane they’ve flown.

I am completely stuck as to how to achieve this… the most simple solution I could think of is to loop through the flights like so…

flown_planes = {}

@user.flights.each do |f|
  if flown_planes[f.plane.id]
    flown_planes[f.plane.id] += 1
  else
    flown_planes[f.plane.id] = 1
  end
end

Can I somehow use .find and .count to achieve this? I’m sure there is a much cleaner way than above. Please see the relationships below.


Flight

class Flight < ActiveRecord::Base
  belongs_to :user
  belongs_to :plane
end

Plane

class Plane < ActiveRecord::Base
  has_many :flights
end

User

class User < ActiveRecord::Base
  has_many :flights
end
  • 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-26T23:01:36+00:00Added an answer on May 26, 2026 at 11:01 pm

    Use group_by to group the flights of the user by the planes!

    @user.flights.group_by(&:plane_id)
    

    That should do it for you,…

    // For iteration…

    @user.flights.group_by(&:plane_id).each do |plane_id, flights|
         plane = Plane.find(plane_id) # gives you the plain object so you can fetch the plane name/identification,... whatever you need
         flights.count # gives you count of flights in the plane
         flights.each do |flight|
              # do anything if you want with each of the flights the user had...
         end
    end
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

For simplicity's sake, let's say we have this rather contrived table: [ID] [Weekday] [Weather]
For the sake of simplicity, lets say I have a CustomerViewModel and I want
For the sake of the example, let's say that I have to model the
For the sake of this example, let's say I have a button that every
For the sake of simplicity, let's say I have a Person class in Python.
For the sake of simplicity lets say I have a table with 3 columns;
For the sake of this question, let's say I have an Excel data source
I have lots of CGContextRef(for sake say 4). I want to get the data
For simplicities sake, I'll make up a similar example to what I have: Let's
This is heavily simplified for the sake of the question. Say I have a

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.