Heim >Datenbank >MySQL-Tutorial >mysql数据库添加用户及分配权限具体实现_MySQL

mysql数据库添加用户及分配权限具体实现_MySQL

PHP中文网
PHP中文网Original
2016-05-27 14:12:061515Durchsuche

bitsCN.com 创建用户并分配权限;

insert into mysql.user(Host,User,Password) values("localhost","phplamp",password("1234"));//创建用户 
grant all privileges on dbname.* to 'username'@'%' identified by 'password';//创建用户并分配所有权限 
grant select,update on phplampDB.* to phplamp@localhost identified by '1234';//创建用户并分配权限 
update mysql.user set password=password('新密码') where User="phplamp" and Host="localhost";//修改用户密码

--删除用户指定权限

revoke insert,update,delete,select ON *.* from 'xbb'@'localhost' IDENTIFIED BY '123';


 以上就是mysql数据库添加用户及分配权限具体实现_MySQL的内容,更多相关内容请关注PHP中文网(www.php.cn)!


Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn