I am using the latest mysql installation from the mysql repository installed on Ubuntu 14.04. Each request that I run leads to an error below, and I could not find anything that discusses this through google or here.
For example, this (obviously for demonstration purposes only) the query returns the following:
[SQL] SELECT * FROM tabcLocations
Affected Rows: 0 Time: 0.705s
[Err] 1055 - Expression # 1 of the ORDER BY clause is not in the GROUP BY clause and contains the non-aggregated column "information_schema.PROFILING.SEQ", which is functionally independent of the columns in the GROUP BY clause; this is incompatible with sql_mode = only_full_group_by
It returns the results of the query just fine, but it throws an error for each request, which will obviously affect the error handling in my applications. Any suggestions to fix this? This is pretty crazy at the moment.
source
share