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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T06:53:55+00:00 2026-06-18T06:53:55+00:00

I have three SELECT statements that do COUNTs. Thought it would be more efficient

  • 0

I have three SELECT statements that do COUNTs. Thought it would be more efficient and kinder on mysql to combine these:

$query = $db->query("SELECT count(category) FROM table WHERE cid='290463' and category = 'x'"); 
         $tot_x = $db->result($query, 0);

$query = $db->query("SELECT count(category) FROM table WHERE cid='290463' and category = 'y'"); 
         $tot_y = $db->result($query, 0);

$query = $db->query("SELECT count(category) FROM table WHERE cid='290463' and category = 'z'"); 
         $tot_z = $db->result($query, 0);

into one statement:

SELECT 
    SUM(category='x' AND cid='290463') as tot_x, 
    SUM(category='y' AND cid='290463') as tot_y, 
    SUM(category='z' AND cid='290463') as tot_z 
FROM table

Problem is, the new statement is slower than running the original three separately.

Anyone able to shed light on why the new statement is slower and also recommendations to improve the SELECT to be faster?

  • 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-18T06:53:56+00:00Added an answer on June 18, 2026 at 6:53 am

    Your original queries were probably able to make use of indexes on your table (based on your where clause), ensuring that only a relatively small proportion of the records on the table were read – instead of the entire table, as in your unified query. Try adding equivalent conditions back into your where clause, like so:

    SELECT 
        SUM(category='x') as tot_x, 
        SUM(category='y') as tot_y, 
        SUM(category='z') as tot_z 
    FROM table
    WHERE cid='290463' and category in ('x', 'y', 'z')
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have three SELECT statements that each return a total, 'New Cases', 'Closes Cases',
I have three select statements that provide the number of Members that attend particular
I have a MySQL query that runs a brief operation (totalling the counts in
I have three table I need to query table 1,2 and 3 and select
I have a select statement that returns a table full of SELECT statements (It
I have a query that counts the price of all items between two dates.
Currently I have UNION's between 3 different select statements giving me three rows. What
I have three select boxes state,city and locality with the id's same as name
I have three select boxes :- select1 select2 select3 , i am fetching data
I have a table with three columns, and two cells contain select boxes with

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.