Mysql创建用户分配权限
2018-03-26 本文已影响0人
某人A
mysql创建用户
create user 'user_name'@'allow_host' identified by 'pass_word';
mysql为用户分配权限
grant all privileges on `user_controller_database`.* to 'suer_name'@'allow_host' identified by 'pass_word';
分配完权限刷新权限
flush privileges;