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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T07:01:57+00:00 2026-05-11T07:01:57+00:00

What more can I do to optimize this query? SELECT * FROM (SELECT `item`.itemID,

  • 0

What more can I do to optimize this query?

SELECT * FROM     (SELECT `item`.itemID, COUNT(`votes`.itemID)  AS `votes`,            `item`.title, `item`.itemTypeID, `item`.            submitDate, `item`.deleted, `item`.ItemCat,            `item`.counter, `item`.userID, `users`.name,            TIMESTAMPDIFF(minute,`submitDate`,NOW()) AS 'timeMin' ,            `myItems`.userID as userIDFav, `myItems`.deleted as myDeleted       FROM    (votes `votes` RIGHT OUTER JOIN item `item`                   ON (`votes`.itemID = `item`.itemID))            INNER JOIN               users `users`            ON (`users`.userID = `item`.userID)     LEFT OUTER JOIN               myItems `myItems`            ON (`myItems`.itemID = `item`.itemID)      WHERE (`item`.deleted = 0)      GROUP BY `item`.itemID,               `votes`.itemID,               `item`.title,               `item`.itemTypeID,               `item`.submitDate,               `item`.deleted,               `item`.ItemCat,               `item`.counter,               `item`.userID,               `users`.name,               `myItems`.deleted,               `myItems`.userID     ORDER BY `item`.itemID DESC) as myTable where myTable.userIDFav = 3 or myTable.userIDFav is null             limit 0, 20  

I’m using MySQL

Thanks

  • 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. 2026-05-11T07:01:57+00:00Added an answer on May 11, 2026 at 7:01 am

    Of course, as @theomega said, look at the execution plan.

    But I’d also suggest to try and ‘clean up’ your statement. (I don’t know which one is faster – that depends on your table sizes.) Usually, I’d try to start with a clean statement and start optimizing from there. But typically, a clean statement makes it easier for the optimizer to come up with a good execution plan.

    So here are some observations about your statement that might make things slow:

    • a couple of outer joins (makes it hard for the optimzer to figure out an index to use)
    • a group by
    • a lot of columns to group by

    As far as I understand your SQL, this statement should do most of what yours is doing:

    SELECT `item`.itemID, `item`.title, `item`.itemTypeID, `item`.        submitDate, `item`.deleted, `item`.ItemCat,        `item`.counter, `item`.userID, `users`.name,        TIMESTAMPDIFF(minute,`submitDate`,NOW()) AS 'timeMin'    FROM    (item `item` INNER JOIN users `users`        ON (`users`.userID = `item`.userID) 

    WHERE

    Of course, this misses the info from the tables you outer joined, I’d suggest to try to add the required columns via a subselect:

    SELECT `item`.itemID,         (SELECT count (itemID)         FROM votes v        WHERE v.itemID = 'item'.itemID) as 'votes', <etc.> 

    This way, you can get rid of one outer join and the group by. The outer join is replaced by the subselect, so there is a trade-off which may be bad for the ‘cleaner’ statement.

    Depending on the cardinality between item and myItems, you can do the same or you’d have to stick with the outer join (but no need to reintroduce the group by).

    Hope this helps.

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

Sidebar

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.