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

前端 未结 19 3307
灰色年华
灰色年华 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 11:43

    1. Login to phpMyAdmin
    2. Navigate to : Server: localhost:3306 and do not select any database
    3. Click on variables from the top menu
    4. Search for "sql mode" and edit the corresponding value to : NO_ENGINE_SUBSTITUTION

    That's all.

    I did this in my Ec2 and it worked like charm.

提交回复
热议问题