我遵循dev.mysql的教程,尝试将先前创建的每个帐户的默认角色设置为所有已分配的角色,因此我尝试使用以下语句:https://dev.mysql.com/doc/refman/8.0/en/roles.html
SET DEFAULT ROLE ALL TO
'dev1'@'localhost',
'read_user1'@'localhost',
'read_user2'@'localhost',
'rw_user1'@'localhost';
但是我不能,因为这个错误“@”不是这个服务器版本的有效输入,应该是“;”
我正在使用workbench 8.0
1条答案
按热度按时间6uxekuva1#
这是mysql工作台使用的mysql语法中的一个bug。查看github上的代码。相关规则如下: