oracle日期的默认格式是这样的
"19-8月 -10" 2010年8月19日
如果比较大小的话sql就要是:select createDate from t where createDate>'19-8月 -10'
这种格式是非常难受的。
所以解决方法是:
select to_char(createDate,'yyyy-mm-dd hh24:mi:ss') from t where to_char(createDate,'yyyy-mm-dd hh24:mi:ss')>'2010-08-19'
还要特别注意的是,必要的零必须加上
'2010-8-19 01:2:02',这样是不对的。
另外还有 to_date('2000-1-1 01:01:20',''yyyy-mm-dd hh24:mi:ss'');
和上面的作用相反
=========================================
oracle 日期类型的 选择
to_char(REQUESTED_ON,'yyyy-mm-dd hh24:mi:ss')
日期类型的插入或更新
to_date('2001.06.18','yyyy.mm.dd')
to_date('2010-11-01','yyyy-mm-dd hh24:mi:ss')
to_date('2010-11-01 00:11:22','yyyy-mm-dd hh24:mi:ss')