I have a couple of indexes in my mysql database, how can i check whether a specific sql statement will use that query, thanks.
use EXPLAIN to see how a query is processed. e.g. EXPLAIN select * from users;
Thanks.