文章

mysql问题

mysql8下导入数据库出现 ERROR 1449 (HY000): The user specified as a definer (‘root’@’%’) does not exist

解决方案

create user 'root'@'%' identified by '1234';

grant all privileges on *.* to 'root'@'%';

flush privileges;
License:  CC BY 4.0