Hello,
I recently migrated my DB to the DO VPS, all went well, I’ve updated my webapp to query the localhost DB instead of the old one but I get error like this: SQLSTATE[42000]: Syntax error or access violation: 1055 Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column ‘myDB.p0_.id’ which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by"
My app is developed on the Symfony 3 framework, with Doctrine ORM.
Please let me know what I can do to fix that error.
Thanks, Roland
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
The above is due to your current MySQL version setting sql_mode to onlyfullgroup_by.
MySQL defaults to onlyfullgroup_by on v5.7.5+ and that seems to conflict with the query that you’re attempting to run – perhaps because the previous version of MySQL you were running on either did not have a mode set, or it was set to something else that still allowed that query to execute.
What you can try is logging in to the MySQL CLI as root and executing:
SET sql_mode = '';
And then refresh and see if that allows the query to work for you. This isn’t so much an issue with MySQL directly as it is with the mode MySQL is running in and what you’re trying to do inside the query.
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.