Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

Como desativar a opção only_full_group_by no Laravel


No Laravel, você pode fazer isso em tempo de execução em vez de fazer uma configuração global
//disable ONLY_FULL_GROUP_BY
DB::statement("SET sql_mode=(SELECT REPLACE(@@sql_mode,'ONLY_FULL_GROUP_BY',''));");

//Your SQL goes here - The one throwing the error (:

//re-enable ONLY_FULL_GROUP_BY
DB::statement("SET sql_mode=(SELECT CONCAT(@@sql_mode, ',ONLY_FULL_GROUP_BY'));");