Disable ONLY_FULL_GROUP_BY

后端 未结 27 1375
既然无缘
既然无缘 2020-11-22 00:22

I accidentally enabled ONLY_FULL_GROUP_BY mode like this:

SET sql_mode = \'ONLY_FULL_GROUP_BY\';

How do I disable it?

27条回答
  •  挽巷
    挽巷 (楼主)
    2020-11-22 01:11

    This is what I performed to fix on Mysql workbench:

    Before I got the current value with the below command

    SELECT @@sql_mode 
    

    later I removed the ONLY_FULL_GROUP_BY key from the list and I pasted the below command

    SET sql_mode = 'STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION'
    

提交回复
热议问题