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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T07:07:50+00:00 2026-06-14T07:07:50+00:00

Sorry for the naff title, but I’m not really sure how to explain this,

  • 0

Sorry for the naff title, but I’m not really sure how to explain this, I’m one of the new generation whose SQL skills have degraded thanks to the active record patterns!

Basically I have three tables in PostgreSQL

Client (One Client has many maps)
– id

Maps (Map has one client and many layers)
– id
– client_id

Layer (Layer has one map)
– id
– map_id

I would like to write an SQL query that returns Cliend.id along with a count of how many maps that client has and the total number of layers the client has across all maps.

Is this possible with a single query? Speed isn’t of concern as this is just for analytical purposes so will be run infrequently.

  • 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-14T07:07:52+00:00Added an answer on June 14, 2026 at 7:07 am

    I’d use a pair of subqueries for this. Something like:

    SELECT
        id,
        (
             SELECT count(map.id)
             FROM map 
             WHERE map.client_id = client.id
        ) AS n_maps,
        (
             SELECT count(layer.id)
             FROM map INNER JOIN layer ON (layer.map_id = map.id)
             WHERE map.client_id = client.id
        ) AS n_layers
    FROM client;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Sorry but I am not sure how to ask this question but I am
sorry if the title is worded oddly, not really sure how to say it.
Sorry the title is not very descriptive but it is a tricky problem to
Sorry if this is stupid question, but I'm new to MATLAB. I have a
Sorry for this not being a real question, but Sometime back i remember seeing
Sorry if this sounds like a really stupid question, but I need to make
(Sorry for the not-so-good-title, I'm not sure how my problem can be solved, thus
sorry for lamer question, but I really could not found subject. I have a
Sorry this is basic, but I'm new to Python and Django. I have a
Sorry the title is fuzzy, but I really coudln't come up with a fitting

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.