Hello!

James MacLean wrote:

>Hi Folks,
>
>Have only known enough SQL to do what we needed. 
>
>Today on mysql-3.23.51 we found out that :
>
>select something from table where index1 = 'value' or index2 = 'value';
>
>Runs considerably slower than:
>
>select something from table where index1 = 'value';
>or
>select something from table where index2 = 'value';
>  
>

Does it have a compund index, created like this:

CREATE INDEX myindex ON table (index1,index2);

???

Greetings
 Ralf

-- 
Ralf Narozny
SPLENDID Internet GmbH & Co KG
Skandinaviendamm 212, 24109 Kiel, Germany
fon: +49 431 660 97 0, fax: +49 431 660 97 20
mailto:[EMAIL PROTECTED], http://www.splendid.de




---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to