我正在尝试通过 phpmyadmin 中的 SQL 选项卡来创建/导入这样的视图:
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);
我收到此错误:
#1227 - Access denied; you need the SUPER privilege for this operation
我无法在我的托管公司获得超级特权,所以有什么办法可以解决这个问题吗?
提前致谢 :-)