Greetings,
Mysql v4.1
I have a query, which I use lots of times. This query is used as a view i.e. it's results are a view for other queries.
When I use the following syntax:
SELECT
FROM (SELECT FROM ff,gg,dfd WHERE I=g and h=k and l=e)
(and I use it multiplied...)
So - When I use this syntax - it is a lot slower from the next example:
CREATE TABLE temp AS (SELECT * FROM ff,gg,dfd WHERE I=g and h=k and l=e);
SELECT * FROM temp;
From that I deduce that the results of the quert, I use as view, are not chached.
Is there a way to make Mysql Cach the results of a query?