grant all privileges on 'bbs' to 'userone'@'localhost' IDENTIFIED BY PASSWORD 'user2012';
显示
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual
我想添加一个用户
userone
并授予数据库bbs
的所有权限。如何纠正?
最佳答案
需要为要授予特权的数据库中的表包含一个指示符。更改查询:grant all privileges on bbs.* to 'userone'@'localhost' IDENTIFIED BY PASSWORD 'user2012';
为“bbs”数据库中的所有表授予它。
关于mysql - grant all命令有什么问题?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10698248/