标签:mysql 操作
一、基本操作
1)查看当前mysql状态
mysql> show status;
2)查看mysql的参数
show variables;
修改mysql的参数
show variables like ‘max_connect%‘;
set global max_connections = 1000;
3)查看当前mysql服务器的队列
mysql> show processlist;
4)创建一个普通用户并授权
grant all on db1.* to ‘user3‘@‘%‘ identified by ‘231222‘;
本文出自 “尽力而为” 博客,请务必保留此出处http://yanjiu.blog.51cto.com/673670/1922783
标签:mysql 操作
原文地址:http://yanjiu.blog.51cto.com/673670/1922783