Mysql最佳化SQL語句的一般步驟

來源:互聯網
上載者:User

首先,我們需要顯示Mysql的狀態,一系列操作導致的伺服器的動態值,我們只能看,來判斷,不能改。

show status; 會話層級的。

這次登入以後的操作次數。  

show status like 'com_insert';show status like 'com_select';show status like 'com_update';show status like 'com_delete';

 

顯示這次伺服器起來後,增刪改查多少次,判斷是增加多,還是查詢多。

show global status; 

show GLOBAL status like 'com_insert';show GLOBAL status like 'com_select';show GLOBAL status like 'com_update';show GLOBAL status like 'com_delete';

 我們建議不採用Myisam引擎,採用Innodb引擎,所以

show status like 'innodb_rows%'

 

顯示串連數,不管你是不是登入成功,都算上一次串連:

show status like 'connections%'

 我們需要把二進位日誌和慢查詢開啟:

 

 

查看慢查詢是不是開啟:

show status like '%slow_query_log%'

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.