oracle 查询两个时间点的记录
select * from INTERNATIONAL_TRADEINFO t where t.TRADETIME>to_date('2015-4-14 00:00:00','yyyy-MM-dd:hh24:mi:ss') and t.TRADETIME<to_date('2015-4-15 00:00:00','yyyy-MM-dd:hh24:mi:ss');
select * from INTERNATIONAL_TRADEINFO t where t.TRADETIME>to_date('2015-4-14 00:00:00','yyyy-MM-dd:hh24:mi:ss') and t.TRADETIME<to_date('2015-4-15 00:00:00','yyyy-MM-dd:hh24:mi:ss');