Posted on 2007-04-27 05:00
leekiang 阅读(640)
评论(0) 编辑 收藏 所属分类:
sql
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