如何创建新用户和授予MySQL中的权限

发布网友 发布时间:2022-04-23 00:45

我来回答

1个回答

热心网友 时间:2022-04-07 22:53

grant all on *.* to username@'host' identified by 'password'; --授予全部权限
grant all on databasename.* to username@'host' identified by 'password' --授予对某库的全部权限
grant insert,update,select on databasename.tablename to username@'host' identified by 'password' --授予对某表的部分权限

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com