Skip to main content

Mysql 5.7.25 default functions issue

Comments

2 comments

  • cPanelMichael
    Hello @wonder_wonder, ONLY_FULL_GROUP_BY is enabled by default in MySQL version 5.7: mysql> SELECT @@GLOBAL.sql_mode; +-------------------------------------------------------------------------------------------------------------------------------------------+ | @@GLOBAL.sql_mode | +-------------------------------------------------------------------------------------------------------------------------------------------+ | ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION | +-------------------------------------------------------------------------------------------------------------------------------------------+ 1 row in set (0.00 sec)
    The change you made disabled ONLY_FULL_GROUP_BY because your script was not compatible with it. Thank you.
    0
  • wonder_wonder
    Hello @wonder_wonder, ONLY_FULL_GROUP_BY is enabled by default in MySQL version 5.7: ... Thank you.

    I was think are default in 5.7 and older, but, its by default in 5.7.x, true? In this case, my doubt/question was a little "stupid question"...sorry :) Thanks at you!!
    0

Please sign in to leave a comment.