SELECT list is not in GROUP BY clause and contains nonaggregated column … incompatible with sql_mode=only_full_group_by

前端 未结 19 3378
灰色年华
灰色年华 2020-11-22 11:28

AM using MySQL 5.7.13 on my windows PC with WAMP Server

Here my Problem is While executing this query

SELECT *
FROM `tbl_customer_pod_uploads`
WHERE          


        
19条回答
  •  我在风中等你
    2020-11-22 12:01

    > sudo nano /etc/mysql/my.cnf
    

    Enter below

    [mysqld]
    sql_mode = ""
    

    Ctrl + O => Y = Ctrl + X

    > sudo service mysql restart
    

提交回复
热议问题