以下两个语句都会在 Postgres 中产生错误:
SELECT substring(start_time,1,8) AS date, count(*) as total from cdrs group by date;
SELECT substring(start_time,1,8) AS date, count(*) as total from cdrs group by substring(start_time,1,8);
错误是:
列“cdrs.start_time”必须出现在 GROUP BY 子句中或在聚合函数中使用
我对 postgres 文档的阅读是 SELECT 和 GROUP BY 都可以使用表达式 postgres 8.3 SELECT
start_time 字段是一个字符串,具有 ccyymmddHHMMSS 形式的日期/时间。在 mySQL 中,它们都产生期望和预期的结果:
+----------+-------+
| date | total |
+----------+-------+
| 20091028 | 9 |
| 20091029 | 110 |
| 20091120 | 14 |
| 20091121 | 4 |
+----------+-------+
4 rows in set (0.00 sec)
我需要坚持使用 Postgres (heroku)。有什么建议么?
ps 还有很多其他的讨论,讨论 GROUP BY 中缺少的项目,以及为什么 mySQL 接受这个,为什么其他人不接受......严格遵守 SQL 规范等,但我认为这与1062158/converting-有很大不同mysql-select-to-postgresql和1769361/postgresql-group-by-different-from-mysql保证一个单独的问题。