下載下傳安裝的是最新版的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
運作mysql指令
mysql -uroot -proot
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_SUBSTITUTIO