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 7867217
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T00:39:14+00:00 2026-06-03T00:39:14+00:00

Is it possible to perform a count based on a combination of two columns?

  • 0

Is it possible to perform a count based on a combination of two columns?

I have 3 tables:

student:
Student id | Student name | Gender | Dob |

class register: Student id | Class id

Both columns make up the composite primary key.

Classes: Class id | Class name | Class day

I would like to perform a count of the number of students of each gender in each class.

I came up with this query so far:

SELECT class_name AS 'class Name',
  Child_gender AS 'Gender',
  COUNT(student_id) AS 'Count'
FROM student,classRegister,classes
WHERE student.student_id=classRegister.student_id AND
  classRegister.class_id=classes.class_id
GROUP BY class_name,student_gender
ORDER BY class_name;

But it seems to be giving me duplicate results for some of the students.

So, can I modify this query to count the number of instances of a combination of the student_id and class_id?

I’m still very new to MySQL, so I apologise if this is basic for everyone

  • 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-06-03T00:39:15+00:00Added an answer on June 3, 2026 at 12:39 am

    Try this:

    SELECT c.class_name AS 'class Name', s.Child_gender AS 'Gender',
           COUNT(s.student_id) AS 'Count'
    FROM student s
    INNER JOIN classRegister cr ON s.student_id = cr.student_id 
    INNER JOIN classes c ON cr.class_id = c.class_id
    GROUP BY s.Child_gender, s.class_id, c.class_name
    ORDER BY c.class_name
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is it possible to perform a global reversed-find on NHibernate-managed objects? Specifically, I have
is it possible to perform a dynamic role assignment based on a quiz result
Is it possible to perform date arithmetic using JPA/Hibernate? For example, I have an
I have two tables with a many to one relationship which represent lots and
Urgh...my LINQ has suddenly taken a turn for the worse!! I have two tables
I have a page that pulls together aggregate data from two different tables. I
Is it even possible to perform address (physical, not e-mail) validation? It seems like
Is it possible to perform a named-group match in Perl's regex syntax as with
Is it possible to perform some custom processing when Windsor instantiates a type? Something
Is it possible to perform an action when a UITableViewCell is highlighted? For example

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.