I am trying, through the SQL tab in phpmyadmin, to create / import a view like this:
CREATE ALGORITHM=UNDEFINED DEFINER=`byname`@`localhost` SQL SECURITY DEFINER VIEW `wr_averages` AS select `nf_users`.`id` AS `id`,(`nf_users`.`points` / `nf_users`.`played`) AS `average_points` from `nf_users` where (`nf_users`.`played` > 24);
I get this error:
I canβt get SUPER privileges from my hosting company, so do get around this anyway?
Thanks in advance: -)
mysql phpmyadmin
Mansa
source share