如何授予“选择”权限MySQL 中的多个表?
我想做类似的事情
grant select on arpg.t_account,arpg.t_char to peeker@'localhost';
但失败了,有什么办法吗?
i want to do something like
grant select on arpg.t_account,arpg.t_char to peeker@'localhost';
but fails, is there a way to do so?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不行,你可以写一个脚本来帮你管理。 MySQL 管理工具中还有一些功能可让您通过点击轻松完成此操作。
You can't, you can write a script to manage it for you. There is also some functionality in the MySQL admin tools to let you do it with point and click ease.
没有。没有在一个单一的声明中。您甚至不能在此处使用通配符,例如 arpg.t_% 。
Nope. Not in a single statement. You can't even use a wildcard such as arpg.t_% here.