MySQL wil only use one index per table in a query... this is why in
most cases a composite index will do better that a single column
index.

And for the second is true... this is leftmost rule...

You have an index on:
a, b, c

You gain indexes on:
a, b
a

But you will need to set up yourself an index on:
a, c
or
c, a

Try variations... of indexes toghether with EXPLAIN SQL...

Also have a look at MySQL Optimization by Jeremy Zawodny at
http://jeremy.zawodny.com/mysql/mysql-optimization.html

--
Gabriel PREDA
Senior Web Developer

--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:    http://lists.mysql.com/[EMAIL PROTECTED]

Reply via email to