Disable ONLY_FULL_GROUP_BY
Disable ONLY_FULL_GROUP_BY
Solution 1: Remove ONLY_FULL_GROUP_BY from mysql console
mysql > SET GLOBAL sql_mode=(SELECT REPLACE(@@sql_mode,'ONLY_FULL_GROUP_BY',''));
Solution 2: Remove ONLY_FULL_GROUP_BY from phpmyadmin
– Open phpmyadmin & select localhost
– Click on menu Variables & scroll down for sql mode
– Click on edit button to change the values & remove ONLY_FULL_GROUP_BY & click on save
To keep your current mysql settings and
disable ONLY_FULL_GROUP_BY
I suggest to visit your phpmyadmin or whatever client you are using and type:
SELECT REPLACE(@@sql_mode,'ONLY_FULL_GROUP_BY','') copy_me
next copy result to your my.ini file.
For mint:
sudo nano /etc/mysql/my.cnf
For ubuntu 16 and up:
sudo nano /etc/mysql/my.cnf
For ubuntu 14-16:
/etc/mysql/mysql.conf.d/mysqld.cnf
Source:
https://www.stackofcodes.in/2018/09/04/disable-only_full_group_by/
No comments:
Post a Comment