How to fix issue in mysql import CREATE ALGORITHM=UNDEFINED DEFINER=?
error become
CREATE ALGORITHM=UNDEFINED DEFINER=
need to replace it with
DEFINER = CURRENT_USER
Also its possible to replace all strings with DEFINER = `your_db_user`@`localhost` with your real data on your current server.
For example replace with DEFINER = `your_real_db_user`@`127.0.0.1:3312` -- use your real db user and real DB server IP and port
replace all similar string combinations in your SQL file