MySQL Forums
Forum List  »  Optimizer & Parser

Re: 2 column between optimization
Posted by: Felix Geerinckx
Date: September 02, 2005 02:01PM

Brad Culberson wrote:

> I need to optimize queries similar to the following:
> Select * from thattable where a > 1 and a < 2 and b > 3 and b < 5
>
> After making an index including both a and b in ascending order, Explain shows it is not being
> used...
>
> As a test, I also tried to add index just a and doing the following:
> Select * from thattable where a > 1 and a < 2
> Explain also shows it is also not being used.
>
> Any ideas would be greatly appreciated.

Can you post the output of:

SELECT VERSION();
SHOW CREATE TABLE thattable;
SHOW INDEX FROM thattable\G
EXPLAIN SELECT ... \G

--
felix
Please use BBCode to format your messages in this forum.

Options: ReplyQuote


Subject
Views
Written By
Posted
6308
September 02, 2005 12:39PM
Re: 2 column between optimization
2945
September 02, 2005 02:01PM
3205
September 02, 2005 02:25PM
2927
September 02, 2005 03:38PM
2786
September 06, 2005 09:17PM
2805
September 05, 2005 12:03PM
2839
September 06, 2005 09:18PM
2777
September 04, 2005 07:21PM
2782
September 06, 2005 09:14PM
2988
September 06, 2005 09:22PM
2721
September 06, 2005 11:17PM
2726
September 07, 2005 02:54AM
3100
September 07, 2005 02:48AM
2876
September 07, 2005 12:25PM
2680
September 07, 2005 12:54PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.