次のエラーが表示されます。
Expression #2 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'world.country.Code' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
次のクエリを実行する場合:
select countrylanguage.language, country.code, sum(country.population*countrylanguage.percentage/100)
from countrylanguage
join country on countrylanguage.countrycode = country.code
group by countrylanguage.language
order by sum(country.population*countrylanguage.percentage) desc ;
MySQL ワールド テスト データベース ( http://dev.mysql.com/doc/index-other.html ) を使用します。なぜこれが起こっているのか分かりません。現在 MYSQL 5.7.10 を実行しています。
何か案は???:O