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
ホスティング会社で SUPER 権限を取得できません。これを回避する方法はありますか?
前もって感謝します :-)