1. 程式人生 > >mysql5.7報錯this is incompatible with sql_mode=only_full_group_by

mysql5.7報錯this is incompatible with sql_mode=only_full_group_by

下載安裝的是最新版的mysql5.7.x版本,預設是開啟了 only_full_group_by 模式的,但開啟這個模式後,原先的 group by語句就報錯,然後又把它移除了。

一旦開啟 only_full_group_by ,感覺,group by 將變成和 distinct 一樣,只能獲取受到其影響的欄位資訊,無法和其他未受其影響的欄位共存,這樣,group by 的功能將變得十分狹窄了

only_full_group_by 模式開啟比較好。

因為在 mysql 中有一個函式: any_value(field)

 允許,非分組欄位的出現(和關閉 only_full_group_by 模式有相同效果)。

 

具體出錯提示:

[Err] 1055 - Expression #1 of ORDER BY clause is not in GROUP BY clause and contains nonaggregated column 'information_schema.PROFILING.SEQ' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by

 

1、檢視sql_mode

    select @@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

 

2、去掉ONLY_FULL_GROUP_BY,重新設定值。

    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';

3、上面是改變了全域性sql_mode,對於新建的資料庫有效。