首页 > 代码库 > mysql-权限管理
mysql-权限管理
查询用户: select User from user; 授权权限: 授予指定权限: grant insert,select on *.* to ‘user_name‘@‘localhost‘ with grant option; (*.*的意思:如:A.B => 数据库A中的表B) 授予所有权限: grant all privileges on *.* to ‘user_name‘@‘localhost‘ with grant option; 查看权限: show grants for ‘user_name‘@‘localhost‘; 查看当前用户的权限:show grants; 回收权限: 回收指定权限: revoke insert,select,grant option on *.* from ‘user_name‘@‘localhost‘ ...; 回收所有权限: revoke all privileges,grant option from ‘user‘@‘localhost‘ ...; grant insert,select on *.* to ‘zhangsan‘@‘localhost‘ with grant option; show grants for ‘zhangsan‘@‘localhost‘;
mysql-权限管理
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。