码迷,mamicode.com
首页 > 数据库 > 详细

mysql

时间:2017-05-07 11:31:23      阅读:151      评论:0      收藏:0      [点我收藏+]

标签: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

标签:mysql 操作

原文地址:http://yanjiu.blog.51cto.com/673670/1922783

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!