我面临类似这样的查询:
SELECT *
FROM invoicable_interval i,
LATERAL partition_into_months(i.start_date, i.stop_or_current_date) p;
... 其中 partition_into_months 的定义类似于:
CREATE FUNCTION partition_into_months(start_date DATE, stop_date DATE)
RETURNS TABLE (start_date DATE, stop_date DATE, days INT)
AS $$ ... $$
LANGUAGE sql
IMMUTABLE;
因此,我正在为辅助表使用可变间隔进行交叉连接,因此使用(冗余)关键字 LATERAL。
这适用于 PostgreSQL 9.3.6 和 9.4.2,但是,对于 9.1.3,我收到以下错误消息:
[42601] ERROR: syntax error at or near "."
Position: 398
指示的位置是表达式“i.start_date”中的点。
如何重写此 SQL 查询以将其移植回 PostgreSQL 9.1.3 ?