You are viewing a single comment's thread. Return to all comments →
Because in MySQL machine from this platform is set to "ONLY_FULL_GROUP_BY". it cant group non-aggregated column, in this case 'founder' column.
for alternative you can put MAX() function on founder: MAX(founder) this will solve the problem.
but if this occur in ur own mysql program in ur pc
you can read this following link abt details to fix it: https://stackoverflow.com/questions/36207042/error-code-1055-incompatible-with-sql-mode-only-full-group-by)
Seems like cookies are disabled on this browser, please enable them to open this website
New Companies
You are viewing a single comment's thread. Return to all comments →
Because in MySQL machine from this platform is set to "ONLY_FULL_GROUP_BY". it cant group non-aggregated column, in this case 'founder' column.
for alternative you can put MAX() function on founder: MAX(founder) this will solve the problem.
but if this occur in ur own mysql program in ur pc
you can read this following link abt details to fix it: https://stackoverflow.com/questions/36207042/error-code-1055-incompatible-with-sql-mode-only-full-group-by)