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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T23:18:49+00:00 2026-05-30T23:18:49+00:00

a simple question for all you SQL gurus: I have the following table structures

  • 0

a simple question for all you SQL gurus: I have the following table structures (not including irrelevant columns);

Area -- AreaID, AreaName
District -- DistrictID, DistrictName, AreaID
Office -- OfficeID, OfficeName, DistrictID
Customer -- CustomerID, OfficeID

I need to be able to get a count of customers in offices, grouped by Area and then by Distric, given an AreaID as input parameter;

DistrictID1 DistrictName1 Count_of_customers
DistrictID2 DistrictName1 Count_of_customers
...

and a count of customers grouped by AreaID (no input parameter)

Area1 Count_of_customers
Area2 Count_of_customers
....
  • 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-30T23:18:50+00:00Added an answer on May 30, 2026 at 11:18 pm

    A query like this should do the trick

    Select D.DistrictID, D.DistrictName, Count(*)
    FROM District AS D
    INNER JOIN Office AS O
    ON D.DistrictID = O.DistrictID
    INNER JOIN Customers AS C
    ON O.OfficeID = C.OfficeID
    WHERE D.AreaID = 1234
    GROUP BY D.DistrictID, D.DistrictName
    

    For the count of customers in the area, you can do the following

    Select A.AreaID,A.AreaName, Count(*)
    FROM Area AS A
    INNER JOIN District AS D
    ON A.AreaID = D.AreaID
    INNER JOIN Office AS O
    ON D.DistrictID = O.DistrictID
    INNER JOIN Customers AS C
    ON O.OfficeID = C.OfficeID
    GROUP BY A.AreaID,A.AreaName
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Hi all SQL Server Blackbelt masters out there. I have a simple question that
Simple question, how do you list the primary key of a table with T-SQL?
I have (what I think) is a simple SQL Server spatial query: Grab all
All, I'm sure this is a pretty simple SQL query question, but I'm sure
I have a simple question - basically I want to fetch all ActiveRecords of
I have an simple question (?) about SQL. I have come across this problem
Hopefully very simple SQL question - I'm just blacking out :) I have a
So my question is pretty simple: I have a column in SQL which is
There is probably a simple answer to this question but I do not have
Here's my simple SQL question... I have two tables: Books ------------------------------------------------------- | book_id |

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.