MySQL 常用命令列指令(個人記錄)

Super_time發表於2020-12-10

記錄 MySQL 常用命令列指令,方便查閱。


登入

mysql -u root -p -h localhost -P 3306

-u 使用者名稱、-h 地址 -P 埠號。


檢視最後一次查詢的成本

show status like 'last_query_cost';

解析單條查詢

 set profiling = 1;
 
 show profiles;
 
 show profile for query 1;

幫助

help xxxx;

變數查詢

 show variables like '%xxxx%';

通過匹配 xxx 檢視變數值


檢視外掛

show plugins;

檢視執行計劃

explain select * from world.city \G;

相關文章