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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T08:03:10+00:00 2026-05-30T08:03:10+00:00

In MySQL I wrote the following query. Making it reselect all that data again

  • 0

In MySQL I wrote the following query. Making it reselect all that data again using JOIN does not seem the most effective way to me. How would you rewrite it to make it more efficient?

SELECT * FROM (
    SELECT COUNT(*) AS 'total' FROM `the_table`
    WHERE `subject_id`=7 ) a
JOIN (
    SELECT COUNT(*) AS 'unread' FROM `the_table`
    WHERE `subject_id`=7 AND `read`=0 ) b

EDIT:

I’m trying to get a table with 2 columns: ‘total’ and ‘unread’ with a single row having INT values, such as

total: 200 unread: 20

  • 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-30T08:03:11+00:00Added an answer on May 30, 2026 at 8:03 am

    Since the where clause is the same except for the condition on read you can use SUM/CASE

     SELECT COUNT(*) AS 'total' , 
           SUM(CASE WHEN `read`=0 THEN 1 ELSE 0 END) as `unread`
     FROM `the_table`
     WHERE `subject_id`=7
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Using MySQL syntax, how would I write a query to return the following (I
How do I write the following MySQL query using Doctrine's findBy*() method?: SELECT column_name1,
I'm calling a class that does not seem to be executing any of its
All, I wrote the following wrapper that extends Zend_Db class to provide db connectivity
I need help to write a MySQL query that would do the following for
I have the following MySql query: select t1.* from Table1 t1 inner join Table2
I wrote an application that currently runs against a local instance of MySql. I
Well I have this MySQL stored procedure that I wrote and if I run
I am trying to write a MySQL query that retrieves one record from table
Hi i'm struggling to write a particular MySQL Join Query. I have a table

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.