mysql學習之一 explain SQL語句:查詢消耗的時間 select version():查看mysql版本 show profiles:分析sql性能 set profiling=1:打開profiles功能,默認是關閉的 show profile for query x(x為query_id):根據query_id 查看某個查詢的詳細時間耗費 show profile block io,cpu,memory,swaps,source,context switches for query x(x為query_id):查看占用cpu、 io等信息 1.清除緩存 reset query cache ; flush tables; 2.查看表的索引: show index from 表名;