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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T01:43:58+00:00 2026-05-11T01:43:58+00:00

I have a SQL query that takes a very long time to run on

  • 0

I have a SQL query that takes a very long time to run on MySQL (it takes several minutes). The query is run against a table that has over 100 million rows, so I’m not surprised it’s slow. In theory, though, it should be possible to speed it up as I really only want to get back the rows from the large table (let’s call it A) that have a reference in another table, B.

So my query is:

SELECT id FROM A, B where A.ref = B.ref; 

(A has over 100 million rows; B has just a few thousand).

I’ve added INDEXes:

alter table A add index(ref); alter table B add index(ref); 

But it’s still very slow (several minutes — I’d be happy with one minute).

Unfortunately, I’m stuck with MySQL 4.1.22, so I can’t use views.

I’d rather not copy all of the relevant rows from A into a separate, smaller table, as the rows that I need will change from time to time. On the other hand, at the moment that’s the only solution I can think of.

Any suggestions welcome!

EDIT: Here’s the output of running EXPLAIN on my query:

+----+-------------+------------------------+------+------------------------------------------+-------------------------+---------+------------------------------------------------+-------+-------------+ | id | select_type | table                  | type | possible_keys                            | key                     | key_len | ref                                            | rows  | Extra       | +----+-------------+------------------------+------+------------------------------------------+-------------------------+---------+------------------------------------------------+-------+-------------+ |  1 | SIMPLE      | B                      | ALL  | B_ref,ref                                | NULL                    |    NULL | NULL                                           | 16718 | Using where | |  1 | SIMPLE      | A                      | ref  | A_REF,ref                                | A_ref                   |       4 | DATABASE.B.ref                                 |  5655 |             | +----+-------------+------------------------+------+------------------------------------------+-------------------------+---------+------------------------------------------------+-------+-------------+ 

(In redacting my original query example, I chose to use ‘ref’ as my column name, which happens to be the same as one of the types, but hopefully that’s not too confusing…)

  • 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-11T01:43:59+00:00Added an answer on May 11, 2026 at 1:43 am

    The query optimizer is probably already doing the best that it can, but in the unlikely event that it’s reading the giant table (A) first, you can explicitly tell it to read B first using the STRAIGHT_JOIN syntax:

    SELECT STRAIGHT_JOIN id FROM B, A where B.ref = A.ref; 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an SQL query that takes the following form: UPDATE foo SET flag=true
I have an SQL query (below) that essentially takes a student from tbStudents, and
I have an sql query that has a parameter that can be null in
I am working on optimizing a SQL query that goes against a very wide
I have a monster query that I'm running against a SQL SERVER 2005 database
I have a sql query that runs super fast, around one second, when not
We have a SQL query that pulls a large number of fields from many
I have a SQL query that is supposed to pull out a record and
I have a SQL query that I'm trying to debug. It works fine for
I have an SQL query that returns all companies records ignore the ones 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.