i need to simplify this query because the server that hold mysql can't do it in the time limit setted.
SELECT `B`.*,
`C`.`name`,
DATE_ADD(`B`.`SAILING-DATE`, INTERVAL `B`.`NIGHTS` DAY) AS dataEnd
FROM `table1` AS B
INNER JOIN `table2` AS A
INNER JOIN `table3` AS C
WHERE `B`.`ID`=`A`.`ID`
AND `B`.`CAT`=`A`.`CAT`
AND `C`.`code`=`A`.`code`
AND (`B`.`NIGHTS`>=$aNumber AND `B`.`NIGHTS`<=$anotherNumber)
// where are other AND like this on `table1`
Where table1 and table2 has about 25.000 rows.
I thought to suddivide the query executing a first query on table1, than loop all the result and make a single query for every result, but i think is too inefficient.
can someone help me? thanks!!!
EDIT:
THIS IS THE EXPLAIN:

EDIT2:
I CAN'T ADD INDEX CAUSE THE FIELD ID, CAT and code are not unique in every table.. in each there are more rows with same ID CAT and code
EDIT3:
I think is better to divide all into subquery more simple.. can someone give me an idea? thanks!
(..)in the last line, and I don't see any optimization other then indexing relevant columns. but I'm a rookie... – alfasin Aug 7 '12 at 23:09EXPLAIN *YOUR_FULL_QUERY_HERE*and post the results? Most likely you just need an index onB.NIGHTSto make it efficient. – drew010 Aug 7 '12 at 23:12