标签: postgresql average
我试图在postgresql中运行此查询,但收到此错误:“错误:聚合函数调用可能不会嵌套”。我必须计算特定日期每个房间的病人数和平均等待时间。
这是我的问题:
select distinct room_id,count(patient_id),avg(max(time)-min(time)) from patient_flow where time>'2015-08-26 00:00:00'and time<'2015-08-26 23:59:59'group by room_id;