this is incompatible with sql_mode=only_full_group_by mysql workbench code example
Example 1: this is incompatible with sql_mode=only_full_group_by
mysql > SET GLOBAL sql_mode=(SELECT REPLACE(@@sql_mode,'ONLY_FULL_GROUP_BY',''));
Example 2: error code 1055
SELECT name, ANY_VALUE(address), MAX(age) FROM t GROUP BY name;