查看MySQL運行進程 mysql>show processlist;sql 查看Innodb引擎運行狀況:ide mysql>show engine innodb status\G進程 查看MySQL參數狀況:ssl mysql>show [global] variables like '%innodb%';it 查看MySQL運行狀態:innodb mysql>show [global] status like '%thread%';table 查看錶、存儲過程、觸發器:class mysql>show tables;thread mysql>show procedure status; show create procedure USP_Cursor; mysql>show triggers; show create trigger TRI_UP_User_Delete; 查看MySQL幫助: mysql>help; mysql>help conntents; mysql>help show; |