MySQL的常用命令
MySQL的常用命令
一.下载地址:
二.安装注意:
root默认密码:123456
三.常用命令:
1.创建用户并授权:
创建用户,只能本地访问:
create user '用户名'@'localhost' identified by '密码';
为本地用户授权:
grant all privileges on *.* to 用户名@'localhost';
创建用户,远程访问:
create user '用户名'@'%' identified by '密码';
为远程用户授权:
grant all privileges on *.* to 用户名@'%';
2.删除用户:
drop user 用户名@'%';
3.修改用户密码:
update mysql.user set password=password('新密码') where User="用户名" and Host="localhost";
4.查询指定用户及权限:
show grants for '用户名'@'%';
select * from mysql.user where user='用户名' \G
5.查询所有用户:
SELECT DISTINCT CONCAT('User: ''',user,'''@''',host,''';') AS query FROM mysql.user;
6.登录mysql:
(1)MySQL 5.6 Command Line Client:
直接输入root密码即可;
(2)使用命令提示符:
先跳转到mysql安装目录下:cd C:\Program Files\MySQL\MySQL Server 5.6\bin
mysql -h localhost -u 用户名 -p密码
mysql -h 远程ip地址 -u 用户名 -p密码
7.创建数据库:
create database 数据库名
四.参考地址:
http://blog.csdn.net/preterhuman_peak/article/details/40396873 远程设置