orcale 把日期当做查询条件
Posted 弓长张&木子李
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了orcale 把日期当做查询条件相关的知识,希望对你有一定的参考价值。
根据日期查询范围
精确到天
select * from table where to_char( time,‘yyyy mm dd ‘ ) <= ‘2000 01 01‘
select * from table where to_char( time,‘yyyy-mm-dd ‘ ) <= ‘2000-01-01‘
select * from table where to_char( time,‘yyyy/mm/dd ‘ ) <= ‘2000/01/01‘
精确到秒
select * from table where to_char( time,‘yyyy mm dd hh24 mi ss‘ ) <= ‘2000 01 01 12 12 12‘
select * from table where to_char( time,‘yyyy-mm-dd hh24-mi-ss‘ ) <= ‘2000-01-01 12-12-12‘
select * from table where to_char( time,‘yyyy/mm/dd hh24:mi:ss‘ ) <= ‘2000/01/01 12:12:12‘
以上是关于orcale 把日期当做查询条件的主要内容,如果未能解决你的问题,请参考以下文章