|
In order to process a query, MySQL is copying to a temporary table in memory. The server will do this often and it is normal. However, if your database or code is not optimized, it can cause longer query times and higher load on the server.
If you have access to the MySQL client program or phpmyadmin, do an
EXPLAIN [your query] to see some information on it.
|