美文网首页
mysql 问题

mysql 问题

作者: 爲誰而来 | 来源:发表于2022-08-17 09:31 被阅读0次

    Error:The user specified as a definer (‘mysql.infoschema’@’localhost’) does not exist 

    用下面2个命令即可解决

    create user 'mysql.infoschema'@'localhost' identified by '123456';

    grant all on *.* to 'mysql.infoschema'@'localhost';

    相关文章

      网友评论

          本文标题:mysql 问题

          本文链接:https://www.haomeiwen.com/subject/fcdjgrtx.html