# 1055 - A expressão da lista SELECT não está na cláusula GROUP BY e contém coluna não agregada, isso é incompatível com sql_mode = only_full_group_by

minha consulta:

select libelle,credit_initial,disponible_v,sum(montant) as montant 
FROM fiche,annee,type where type.id_type=annee.id_type and annee.id_annee=fiche.id_annee 
and annee = year(current_timestamp) GROUP BY libelle order by libelle asc
O MySQL 5.7.9 executa a consulta sem nenhum problema, mas o MySQL 5.7.12 exibe o erro acima. Você poderia me ajudar com isso?

questionAnswers(8)

yourAnswerToTheQuestion