是的。你说的对。发生这种情况是因为MySQL 版本。在这里
查看我的答案
如何查看 MySQL 版本?
mysql> SELECT version();
+-----------+
| version() |
+-----------+
| 5.5.28 |
+-----------+
1 row in set (0.00 sec)
为了测试 sql_mode ONLY_FULL_GROUP_BY
,我创建了patient
包含两列id, name
并插入记录的表。请记住 sql_modeONLY_FULL_GROUP_BY
不是默认设置,如果需要,您需要设置。
1)MySQL 版本5.0.45-community-nt
SELECT name, MAX(id) FROM patient;
ERROR 1140 (42000): Mixing of GROUP columns (MIN(),MAX(),COUNT(),...) with no GROUP columns is illegal if there is no GROUP BY clause
它失败了,将 sql_mode 设置为没有意义,ONLY_FULL_GROUP_BY
因为它不允许未在 GROUP BY 子句中命名的非聚合列。
2)MySQL 5.1.40 版-社区
mysql> SELECT name, MAX(id) from patient;
+----------+--------+
| MAX(id) | name |
+----------+--------+
| 33 | aniket |
+----------+--------+
1 row in set (0.03 sec)
然后设置sql_mode后ONLY_FULL_GROUP_BY
mysql> set sql_mode = 'ONLY_FULL_GROUP_BY';
Query OK, 0 rows affected (0.00 sec)
mysql> SELECT name, MAX(id) from patient;
ERROR 1140 (42000): Mixing of GROUP columns (MIN(),MAX(),COUNT(),...) with no GROUP columns is illegal if there is no GROUP BY clause
3)MySQL 版本5.5.28
mysql> SELECT name, MAX(id) from patient;
+----------+--------+
| MAX(id) | name |
+----------+--------+
| 33 | aniket |
+----------+--------+
1 row in set (0.03 sec)
然后设置sql_mode后ONLY_FULL_GROUP_BY
mysql> set sql_mode = 'ONLY_FULL_GROUP_BY';
Query OK, 0 rows affected (0.00 sec)
mysql> SELECT name, MAX(id) from patient;
ERROR 1140 (42000): Mixing of GROUP columns (MIN(),MAX(),COUNT(),...) with no GROUP columns is illegal if there is no GROUP BY clause
结论
如您所见,查询在 5.0.45 版本上失败,并在 5.1.40、5.5.28 和 5.1.32 上/之后成功(正如您在问题中提到的那样)。在 MySQL 版本5.1.10(不确定)GROUP BY
之前,无论是否设置了 sql_mode,查询都不会失败ONLY_FULL_GROUP_BY
。
一些有趣的错误和 sql_mode 常见问题链接
- ONLY_FULL_GROUP_BY sql模式过于严格
- sql-mode:只有完整的 group by 模式不起作用
- MySQL 5.0 FAQ:服务器 SQL 模式