首页 > 代码库 > oracle

oracle

时间Date类型比较

select * from aaa where rq between to_date(‘2001-11-01‘,‘yyyy-MM-DD‘) and to_date(‘2002-03-01‘ ,‘YYYY-MM-DD‘);

select * from aaa where rq>;=to_date(‘2001-11-01‘,‘yyyy-MM-DD‘) and rq<=to_date(‘2002-03-01‘ ,‘YYYY-MM-DD‘); 这种据说效率比用between函数高一些。

查询2000年以后的:select sum(SaleNum) from SCOTT.Sale where saledate>=to_date(‘2000‘,‘yyyy‘)

其他关于日期可参考:http://www.cnblogs.com/hl3292/archive/2010/11/03/1868159.html

oracle