SQL_NO_CACHE


]Podporované v MY_SQL 

Popis

Príkaz jazyka SQL
The server does not use the query cache. It neither checks the query cache to see whether the result is already cached, nor does it cache the query result. (Due to a limitation in the parser, a space character must precede and follow the SQL_NO_CACHE keyword; a nonspace such as a newline causes the server to check the query cache to see whether the result is already cached.)

Príklad

SELECT SQL_NO_CACHE id, name FROM customer;


]