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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T20:48:14+00:00 2026-05-22T20:48:14+00:00

Please suggest indexes to optimize below query. I couldn’t allowed to rewrite the query

  • 0

Please suggest indexes to optimize below query. I couldn’t allowed to rewrite the query but create indexes:

SELECT 
    `ADV`.`inds` as `c0`, 
    sum(`ADVpost`.`clk`) as `m0`
FROM 
    (SELECT *
     FROM advts
     WHERE comp_id = 
        (SELECT comp_id 
         FROM comp 
         WHERE name = 'abc'))  as `ADV`, 
        (SELECT dt_id,
                comp_id,
                b_id,
                ad_id,
                clk,
                resp
         FROM advts_post
         WHERE comp_id = 
                 (SELECT comp_id 
                  FROM comp 
                  WHERE name = 'abc')) as `ADVpost`
WHERE 
    `ADVpost`.`ad_id` = `ADV`.`ad_id`
GROUP BY 
    `ADV`.`inds`
ORDER BY 
    ISNULL(`ADV`.`inds`), `ADV`.`inds` ASC 

The explain for the query is as:

select_type table       type    possible_keys   Extra
PRIMARY     <derived2>  ALL     null            Using temporary; Using filesort
PRIMARY     <derived4>  ALL     null            Using where; Using join buffer
DERIVED     ADVpost     ALL     null            Using where
SUBQUERY    comp        ALL     null            Using where
DERIVED     advts       ALL     null            Using where
SUBQUERY    comp        ALL     null            Using where

Existing indexes are as follows:

ADVpost > PRIMARY KEY (`dt_id`,`comp_id`,`b_id`,`ad_id`)

comp    > PRIMARY KEY (`comp_id`)

advts   > PRIMARY KEY (`ad_id`)

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-22T20:48:15+00:00Added an answer on May 22, 2026 at 8:48 pm

    That query is a dogs dinner – whoever wrote it should be severely punished, and the person who said you can’t rewrite it but must make it run faster should be shot.

    Loose the sub-selects!

    MySQL does not do push-predicates very well (at all?).

    Use proper joins instead and state implied joins:

    SELECT ap.inds, SUM(ap.clk)
    FROM advts_post AS ap
    , comp AS co
    , advts ad
    WHERE ap.comp_id = co.comp_id
    AND ad.comp_id = co.comp_id
    AND ap.comp_id = ad.comp_id
    AND co.name='abc'
    GROUP BY ap.inds
    ORDER BY ISNULL(ap.inds), ap.inds ASC
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Please suggest me the best authentication way to implement in the scenario mentioned below:
Please suggest how to write the following UPDATE query with AND in joomla. Code:
please suggest me best algo for the below situation: I have some taks which
Could someone please suggest a tool to create a Domain Model diagram? Some details:
Can anybody please suggest to me how I can create a time countdown like
Please suggest me a query to find temp database tables.
Please suggest some good resources to start writing Java Web services.
Please suggest a good MVC framework for Winforms.
Please suggest some free tools which will help me to get Lines-of-Code metrics for
Please suggest some elegant way to convert arrays of arrays to collections of collections

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.