Mysql:聚合功能在没有 group by 的情况下不起作用

2021-10-26 00:00:00 group-by aggregation mysql

我正在使用以下查询

SELECT count(*) as num,id,page_name FROM project_page where p_id = '256'

此查询在 mysql 版本 5.1.49-3 上运行良好,并在 mysql 5.0.32-Debian_7etch8-log 上出错在两台服务器上,我有完全相同的数据库.

this query is running fine on mysql version 5.1.49-3 and giving error on mysql 5.0.32-Debian_7etch8-log On both server i have exactly same database.

错误信息

#1140 - 如果没有 GROUP BY 子句,将 GROUP 列 (MIN(),MAX(),COUNT(),...) 与没有 GROUP 列的混合是非法的

如何在 5.0.31 上运行上述查询而没有任何错误

How do i run the above query on 5.0.31 without any error

请帮忙.

推荐答案

添加... GROUP BY num, id, page_name

相关文章