sql >> Base de Datos >  >> RDS >> Mysql

Cómo deshabilitar la opción only_full_group_by en Laravel

En Laravel, podrías hacer esto en tiempo de ejecución en lugar de hacer una configuración 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'));");