当前表格数据
表名:应用程序
id | applied_class | applied_date
----+-------+-------------------------------
27 | city1 | 2013-03-11 23:47:04.167624-04
28 | city1 | 2013-03-11 23:58:28.90088-04
29 | city2 | 2013-03-12 00:39:05.955988-04
30 | city3 | 2013-03-12 01:07:28.30229-04
31 | city2 | 2013-03-12 09:46:32.778106-04
32 | city1 | 2013-03-12 23:06:52.262773-04
33 | city2 | 2013-03-14 14:28:40.401831-04
34 | city3 | 2013-03-15 19:33:59.346832-04
35 | city2 | 2013-03-16 05:51:11.354835-04
期望的输出。
它是按日期(日)和城市分组的一段时间内记录的汇总计数。
date | city1 | city2 | city3
------------+----------+----------+--------
2013-03-11 | 2 | 0 | 0
2013-03-12 | 3 | 2 | 1
2013-03-13 | 3 | 2 | 1
2013-03-14 | 3 | 3 | 0
2013-03-15 | 3 | 3 | 2
2013-03-16 | 3 | 3 | 0
当前(失败)查询
我正在尝试逐步完成查询,但我碰壁了。下面的查询返回以下错误(请注意,当我在交叉表之外自行运行这些查询时,这些查询都可以正常工作):
详细信息:SQL rowid 数据类型与返回的 rowid 数据类型不匹配。
select *
from crosstab(
$$select temp_table.d,
applied_class,
sum(temp_table.ct) over (order by d)
from
(
select count(id) ct,
applied_class,
date_trunc('day', applied_date) d from application_app
where applied_class like '%L13'
group by applied_class, d
order by d
) as temp_table
order by 1, 2$$) -- end crosstab
as ct ("day" date, "city1" text, "city2" text, "city3" text);