Этот запрос работает у меня. Но на сервере, настроенный давно уволившимся админом - нет!
SELECT albums.id, albums.name, photos.thumb_url
FROM `custom_app_bigd_gallery_albums` albums
LEFT JOIN `custom_app_bigd_gallery` photos ON albums.id=photos.album_id
WHERE photos.thumb_url IS NOT NULL
GROUP BY photos.album_id
ORDER BY albums.id DESC
LIMIT 0, 25
Выдает эту ошибку
Expression #3 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'photos.thumb_url' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
Суть запроса - вернуть список альбомов, с прикрепленными к ним по одному фото.