本篇文章给大家分享的是有关mysql中怎么添加用户和更改密码,小编觉得挺实用的,因此分享给大家学习,希望大家阅读完这篇文章后可以有所收获,话不多说,跟着小编一起来看看吧。
建立gamesp
create database gamesp;
grant all on 数据库名.* to 用户名@localhost identified by 密码;
grant all on gamesp.* to identified by password;
说明:
(1)grant all 赋予所有的权限
(2)gamesp.* 数据库 gamesp 中所有的表
(3)newuser 用户名
(4)@localhost 在本地电脑上的 server 服务器
(5)identfified by password 设置密码
删除用户
use MysqL
MysqL>Delete FROM user Where User="xxxxx" and Host="localhost";
MysqL>flush privileges;
修改密码
MysqLadmin -uroot -plk317921web password "111111"
以上就是MysqL中怎么添加用户和更改密码,小编相信有部分知识点可能是我们日常工作会见到或用到的。希望你能通过这篇文章学到更多知识。更多详情敬请关注编程之家行业资讯频道。