mysql 问题
2022-08-17 本文已影响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';