当前位置:Gxlcms > 数据库问题 > mysql添加用户并赋予权限命令

mysql添加用户并赋予权限命令

时间:2021-07-01 10:21:17 帮助过:20人阅读

gouge@localhost identified by gouge;

赋予权限:

给gouge 用户赋予所有test开头的数据库权限 (test% 代表已test开头的数据库,如果指定单个数据库去掉%即可)

1 grant select,insert,update,delete,create,drop,alter on `test%`.* to gouge@% identified by gouge;
2 FLUSH PRIVILEGES;

添加最高权限

grant ALL PRIVILEGES on `test%`.* to gouge@% identified by gouge;
FLUSH PRIVILEGES;

 

mysql添加用户并赋予权限命令

标签:sql   oca   去掉   pre   数据库   delete   style   test   let   

人气教程排行