【发布时间】:2019-05-03 16:34:14
【问题描述】:
我不明白为什么会收到此错误。似乎是一个简单的查询。
select *,age(last_order,first_order_date) from
(
select organization,first_order_date::date, max(delivery_date::date) as last_order
from [orderdetailreport]
group by organization,first_order_date::date
)a
【问题讨论】:
标签: amazon-redshift