2
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。如何纠正它?

4

3 回答 3

8

您需要为要授予权限的数据库中的表包含一个指示器。更改查询:

grant all privileges on bbs.* to 'userone'@'localhost' IDENTIFIED BY PASSWORD 'user2012';

为“bbs”数据库中的所有表授予它。

于 2012-05-22T08:18:56.260 回答
2

保留'表名:

grant all privileges on bbs to 'userone'@'localhost'  IDENTIFIED BY PASSWORD 'user2012';
于 2012-05-22T08:19:44.093 回答
0
grant all privileges on 'bbs.*' to 'userone'@'localhost' identified by ‘user2012’;
于 2012-05-22T08:19:20.537 回答