使用Oracle 11g第2版,以下查询给出了ORA-01790:表达式必须与相应的表达式具有相同的数据类型:
with intervals(time_interval) AS
(select trunc(systimestamp)
from dual
union all
select (time_interval + numtodsinterval(10, 'Minute'))
from intervals
where time_interval < systimestamp)
select time_interval from intervals;
该错误表明UNION ALL的两个子查询的数据类型都返回不同的数据类型。
即使我在每个子查询中转换为TIMESTAMP,我也会遇到同样的错误。
我错过了什么?
编辑:我不是在寻找替换CONNECT BY。
答案 0 :(得分:8)
在我看来,对于带有日期或时间戳列的查询,“递归子查询因子”在11g R2中被打破。
with test(X) as
(
select to_date('2010-01-01','YYYY-MM-DD') from dual
union all (
select (X + 1) from test where X <= to_date('2010-01-10','YYYY-MM-DD')
)
)
select * from test;
ORA-01790
使用强制转换来转换数据类型:
with test(X) as
(
select cast(to_date('2010-01-01','YYYY-MM-DD') as date) from dual
union all (
select (X + 1) from test where X <= to_date('2010-01-10','YYYY-MM-DD')
)
)
select * from test;
X
-------------------
2010-01-01 00:00:00
1 row selected
将日期投射到日期有帮助,但其他结果在哪里?
它变得更好......
尝试使用其他开始日期:
with test(X) as
(
select cast(to_date('2007-01-01','YYYY-MM-DD') as DATE) from dual
union all (
select (X + 1) from test where X <= to_date('2011-01-11','YYYY-MM-DD')
)
)
select * from test
where rownum < 10; -- important!
X
-------------------
2007-01-01 00:00:00
2006-12-31 00:00:00
2006-12-30 00:00:00
2006-12-29 00:00:00
2006-12-28 00:00:00
2006-12-27 00:00:00
2006-12-26 00:00:00
2006-12-25 00:00:00
2006-12-24 00:00:00
9 rows selected
向后倒数?为什么?
2014年1月14日更新:作为解决方法,请使用从结束日期开始的CTE并向后构建递归CTE,如下所示:
with test(X) as
(
select cast(to_date('2011-01-20','YYYY-MM-DD') as DATE) as x from dual
union all (
select cast(X - 1 AS DATE) from test
where X > to_date('2011-01-01','YYYY-MM-DD')
)
)
select * from test
结果:
| X |
|--------------------------------|
| January, 20 2011 00:00:00+0000 |
| January, 19 2011 00:00:00+0000 |
| January, 18 2011 00:00:00+0000 |
| January, 17 2011 00:00:00+0000 |
| January, 16 2011 00:00:00+0000 |
| January, 15 2011 00:00:00+0000 |
| January, 14 2011 00:00:00+0000 |
| January, 13 2011 00:00:00+0000 |
| January, 12 2011 00:00:00+0000 |
| January, 11 2011 00:00:00+0000 |
| January, 10 2011 00:00:00+0000 |
| January, 09 2011 00:00:00+0000 |
| January, 08 2011 00:00:00+0000 |
| January, 07 2011 00:00:00+0000 |
| January, 06 2011 00:00:00+0000 |
| January, 05 2011 00:00:00+0000 |
| January, 04 2011 00:00:00+0000 |
| January, 03 2011 00:00:00+0000 |
| January, 02 2011 00:00:00+0000 |
| January, 01 2011 00:00:00+0000 |
用以下方法进行测试:
Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
答案 1 :(得分:2)
奇数 - 如果您传递varchar
并转换(不投差),则有效:
WITH intervals(time_interval) AS
(SELECT to_char(TRUNC(systimestamp))
FROM dual
UNION ALL
SELECT to_char(to_timestamp(time_interval) + numtodsinterval(10, 'Minute'))
FROM intervals
WHERE to_timestamp(time_interval) < systimestamp
)
SELECT to_timestamp(time_interval) time_interval
FROM intervals
答案 2 :(得分:0)
我不知道类型不匹配,但这是另一种方法来实现我想要的(在10gr2中有效):
select base_time + numtodsinterval( 10*(level-1), 'Minute')
from (select trunc(systimestamp) base_time from dual)
connect by base_time + numtodsinterval( 10*(level-1), 'Minute') < systimestamp