需求:如何简单的在一张表中瞬间初始化好一连续,规则为时间间隔为的的DATE类型数据。
我们使用技术来完成这个貌似很“复杂”的需求。
1.创建测试表T,仅包含一个时间字段TIME
sec@ora10g> create table t (time date);
Table created.
2.先初始化一条时间点开始数据
sec@ora10g> insert into t(time) values (to_date('20100514','yyyymmdd'));
1 row created.
3.我们使用 by方法来巧妙的完成这个需求
sec@ora10g> insert into t(time) select to_date('20100514','yyyymmdd')+level/24/60 from t connect by rownum <=10;
10 rows created.
sec@ora10g> commit;
Commit complete.
4.激动人心的结果
sec@ora10g> select * from t order by time;
TIME
-------------------
2010-05-13 00:00:00
2010-05-13 00:01:00
2010-05-13 00:02:00
2010-05-13 00:03:00
2010-05-13 00:04:00
2010-05-13 00:05:00
2010-05-13 00:06:00
2010-05-13 00:07:00
2010-05-13 00:08:00
2010-05-13 00:09:00
2010-05-13 00:10:00
11 rows selected.
5.小结
使用层次查询(CONNECT BY)可以方便的完成批量数据创建的任务,在具体需求中如能灵活的使用层次查询技术,将给我们带来非常大的便利。
如果想一次性初始化一小时的数据,仅需要将“connect by rownum <=10”修改为“connect by rownum <=1440”即可,因为一小时包含1440分钟。
Good luck.
10.05.13
-- The End --
阅读(1021) | 评论(0) | 转发(0) |