1.dos窗口命令登陆. 管理员/普通用户登陆(账号/密码:root/rootpwd) mysql -hlocalhost -uroot -prootpwd 普通用户登陆(root管理员的不可以使用这种方式): mysql -hlocalhost -ushend -p123456 mysql -u 用户名 -p 2.查询数据库编码 use mysql;//这句一定要记得打 show variables like '%skip_networking%'; 3.在mysql数据库的user表种查…
##1.创建用户: create user test identified by '123456';##identified后面跟密码 ##2.查询所有用户: select user from mysql.user; ##3.给用户添加所有权限: #用户详情的权限列表请参考MySQL官网说明:http://dev.mysql.com/doc/refman/5.7/en/privileges-provided.html GRANT ALL ON shop.* TO 'test'@'%' WITH…