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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T16:08:57+00:00 2026-05-22T16:08:57+00:00

I understand how count(*) in SQL when addressing one table but how does it

  • 0

I understand how count(*) in SQL when addressing one table but how does it work on inner joins?

e.g.

SELECT branch, staffNo, Count(*)
FROM Staff s, Properties p 
WHERE s.staffNo = p.staffNo
GROUP BY s.staffNo, p.staffNo

staff contains staffNo staffName

properties contains property management details (i.e. which staff manages which property)

This returns the number of properties managed by staff, but how does the count work? As in how does it know what to count?

  • 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-22T16:08:58+00:00Added an answer on May 22, 2026 at 4:08 pm

    It’s an aggregate function – as such it’s managed by your group by clause – each row will correspond to a unique grouping (i.e. staffNo) and Count(*) will return the number of records in the join that match that grouping.

    So for example:

     SELECT branch, grade, Count(*)
     FROM Staff s, Properties p 
     WHERE s.staffNo = p.staffNo
     GROUP BY branch, grade
    

    would return the number of staff members of a given grade at each branch.

     SELECT branch, Count(*)
     FROM Staff s, Properties p 
     WHERE s.staffNo = p.staffNo
     GROUP BY branch
    

    would return the total number of staff members at each branch

     SELECT grade, Count(*)
     FROM Staff s, Properties p 
     WHERE s.staffNo = p.staffNo
     GROUP BY grade
    

    would return the total number of staff at each grade

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

Sidebar

Related Questions

I would like to understand how exactly does sql count work. Is it a
second highest salary in table in sql select * from emp e where 2
I understand the best way to count the number of rows in an SQL
I understand what System.WeakReference does, but what I can't seem to grasp is a
I have defined the following query: select count((select * from producers)) from producers; Assuming
I have this SQL statement: SELECT ABX.ABX_APO_NUMBER, COUNT(A1.PROCESS_MODE) AS NUM_PLANNING, COUNT(A2.PROCESS_MODE) AS NUM_SETUP, COUNT(A3.PROCESS_MODE)
Spent about one hour to understand. Where is this sql trigger contain syntax error?
I understand the main function of the lock key word from MSDN lock Statement
I understand the difference between String and StringBuilder ( StringBuilder being mutable) but is
I posted on Friday ( sql multiple count ) and had a few responses.

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.