查看MySQL运行进程 mysql>show processlist; 查看Innodb引擎运行情况: mysql>show engine innodb status\G 查看MySQL参数情况: mysql>show [global] variables like '%innodb%'; 查看MySQL运行状态: mysql>show [global] status like '%thread%'; 查看表、存储过程、触发器: mysql>show tables; 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; |
mysql 最基础的日常操作
最新推荐文章于 2021-02-02 11:39:20 发布
本文介绍了MySQL中常用的查询命令,包括查看进程、InnoDB引擎状态、MySQL参数、运行状态等,同时还涉及如何查看表、存储过程及触发器,并提供了获取MySQL帮助的方法。
1200

被折叠的 条评论
为什么被折叠?



