SELECT command denied to user 'root'@'harry' for table 'movie'
时间: 2023-06-21 22:11:16 浏览: 101
链路状态入口-linux连接mysql报错:access denied for user ‘root’@‘localhost’(using password: yes)的解决方法
这个错误提示是因为你使用了MySQL数据库,并且在执行SELECT命令时,MySQL数据库发现当前用户root@harry没有对表movie的查询权限,因此拒绝了该命令的执行。
要解决这个问题,你需要为root用户授权movie表查询权限。可以使用以下命令进行授权:
```
GRANT SELECT ON movie TO 'root'@'harry';
```
执行上述命令后,root用户就可以对movie表进行查询操作了。
阅读全文