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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T01:26:52+00:00 2026-05-20T01:26:52+00:00

I have a table of Users: id, type, name and a table of Articles:

  • 0

I have a table of Users: id, type, name

and a table of Articles: id, writer_id, status

where articles.writer_id = users.id.

I’d like to display a table of each User’s name WHERE type = ‘writer’ along with how many Articles are associated with them that have status = ‘assigned’.

So far I have:

SELECT u.name, COUNT(a.id) as count 
FROM users u LEFT OUTER JOIN articles a 
ON a.writer_id = u.id 
WHERE u.type = 'writer' AND a.status = 'assigned' 
GROUP BY u.name

Problem is, this doesn’t display writers with 0 ‘assigned’-status articles associated with them. I’m pretty sure I need a subquery but I’m not sure what to do. Thanks in advance!

  • 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-20T01:26:53+00:00Added an answer on May 20, 2026 at 1:26 am

    Since you are using a LEFT JOIN, move the a.status = 'assigned' predicate from the WHERE clause to the JOIN clause.

    SELECT u.name, COUNT(a.id) as count 
    FROM users u LEFT OUTER JOIN articles a 
      ON a.writer_id = u.id
      AND a.status = 'assigned' 
    WHERE u.type = 'writer' 
    GROUP BY u.name
    

    Explanation: For those users that do not have a article a.status will be NULL, Leaving the predicate in the WHERE defeats the purpose of a LEFT join, since NULL = 'assigned' will evaluate to false.

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

Sidebar

Related Questions

I have a table with users and printed pages like this: user | pages
I have 2 tables Table: Users userid (int, PK) name (varchar) type (enum) Table:
I have a table of users and each user has another user that they
I have a user-defined table type. I want to check it's existence before editing
I have a stored procedure which accepts a User defined table type called SeasonTable
I have the table users and scores . Here are the associations: belongs_to :user
I have a table for users: USERS: ID | NAME | ---------------- 1 |
I have a main table USERS another table DUES. User table contains list of
I have a table of users, some of which have articles associated with them,
I have a USERS table like this USERS user_id | username 1 tom 2

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.