I exported my SQL tables and views from my local machine.
I tried to import it into my website's machine.
But I get this error: #1227 - Access denied; you need the SUPER privilege for this operation
The error is given for this query:
CREATE ALGORITHM=UNDEFINED DEFINER=`root`@`localhost` SQL SECURITY DEFINER
VIEW `myview` AS select `my_table`.`id` AS `id`,`my_table`.`name` AS
`name`,`my_table`.`surname` AS `surname` from `my_table` where
((`my_table`.`name` = 'michael') and (`my_table`.`surname` = 'notyet'));
What should I select when I export my table and views ? To not to get this error?