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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T23:08:20+00:00 2026-05-20T23:08:20+00:00

One of my coworkers is working on a SQL query. After several joins (workers

  • 0

One of my coworkers is working on a SQL query. After several joins (workers to accounts to tasks), she’s got some information sort of like this:

Worker       Account    Date        Task_completed
Bob Smith    12345      01/01/2010  Received
Bob Smith    12345      01/01/2010  Received
Bob Smith    12345      01/01/2010  Processed
Sue Jones    23456      01/01/2010  Received
...

Ultimately what she wants is something like this – for each date, for each account, how many tasks did each worker complete for that account?

Worker       Account    Date        Received_count  Processed_count
Bob Smith    12345      01/01/2010  2               1

… and there are several other statuses to count.

Getting one of these counts is pretty easy:

SELECT
  COUNT(Task_completed)
FROM 
  (the subselect)
WHERE 
  Task_completed = 'Received'
GROUP BY
  worker, account, date

But I’m not sure the best way to get them all. Essentially we want multiple COUNTs using different GROUP BYs. The best thing I can figure out is to copy and paste the subquery several times, change the WHERE to “Processed”, etc, and join all those together, selecting just the count from each one.

Is there a more obvious way to do this?

  • 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-20T23:08:21+00:00Added an answer on May 20, 2026 at 11:08 pm
    SELECT  worker, account, date,
            SUM(task_completed = 'Received') AS received_count,
            SUM(task_completed = 'Processed') AS processed_count
    FROM    mytable
    GROUP BY
            worker, account, date
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm working on a web application. One of my co-workers has written some asp.net
While working on some custom validators in WPF, one of my co-workers pointed me
So I'm working on a framework-esque system with one of my co-workers. Our current
me and one of my coworkers are working on a simple socket communication between
One of my coworkers is working on a set of stored procedures, and changing
One of my coworkers wrote a .NET windows service that converts .doc to .docx
One of my coworkers needs a piece of data from a 3rd party website.
one question about PHP Development. I am building up some Form Fields for Calculations.
Here is a little background information. I'm working on replacing a dll that has
Today at work I had an interesting discussion with one of my coworkers. He

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.