Error Code: 1055 incompatible with sql_mode=only_full_group_by

后端 未结 6 1317
予麋鹿
予麋鹿 2020-12-01 05:49

I have been having issues switching to an offline version of the Lahman SQL baseball database. I was using a terminal embed into an EDX course. This command runs fine on the

6条回答
  •  不思量自难忘°
    2020-12-01 05:59

    The accepted solution above didn't work for me on version 5.7.9, for osx10.9 (x86_64).

    Then the following worked -

    set global sql_mode = 'STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION';
    

提交回复
热议问题