城市猎人

在一网情深的日子里,谁能说得清是苦是甜,只知道确定了就义无反顾
posts - 1, comments - 7, trackbacks - 0, articles - 89

日期处理

Posted on 2008-08-08 14:19 sailor 阅读(141) 评论(0)  编辑  收藏 所属分类: oracle

1create table test(
2abc TIMESTAMP,
3abd date
4)

1INSERT INTO TEST(ABC)
2VALUES(TO_TIMESTAMP('2008-08-08 14:15:23','YYYY-MM-DD HH24:MI:SS'));

1Insert into test(abd)
2values(to_date('2008-08-08 14:18:23','yyyy-mm-dd hh24:mi:ss'));

1select 
2to_char(abc,'yyyy-mm-dd hh24:mi:ss'),
3to_char(abd,'yyyy-mm-dd hh24:mi:ss')
4from test;

4、条件查询时间
1select start_Date
2from t_s_promote
3where start_Date between to_date('2008-08-01','YYYY-MM-DD'and to_date('2008-09-01','YYYY-MM-DD');

只有注册用户登录后才能发表评论。


网站导航: