select
to_date(
'
2007/02/26
'
,
'
yyyy/mm/dd
'
)
+
rownum
-
1
from
user_objects
where
rownum
<=
(to_date(
'
2007/03/01
'
,
'
yyyy/mm/dd
'
)
-
to_date(
'
2007/02/26
'
,
'
yyyy/mm/dd
'
)
+
1
);
2007/2/26
2007/2/27
2007/2/28
2007/3/1
注:能查询到的最大天数受user_objects个数的制约。
see
2007/2/26
2007/2/27
2007/2/28
2007/3/1
注:能查询到的最大天数受user_objects个数的制约。
see