当前位置: 代码迷 >> 综合 >> MySQL 中关于ERROR 1142 (42000): GRANT command denied to user ‘google‘@‘localhost‘ for table ‘t_user
  详细解决方案

MySQL 中关于ERROR 1142 (42000): GRANT command denied to user ‘google‘@‘localhost‘ for table ‘t_user

热度:46   发布时间:2023-10-09 04:15:19.0

以mysql –ugoogle –p1234命令行的方式进入MySQL命令行进行权限操作出现错误
MySQL 中关于ERROR 1142 (42000): GRANT command denied to user ‘google‘@‘localhost‘ for table ‘t_user

原因是google账户的权限不够,要以超级管理员root进入才可以,
解决方案:mysql –uroot –proot 重新进入(我的账户与密码都是root,你们可以根据自己的去写),再进行命令操作即可。

  相关解决方案