码迷,mamicode.com
首页 > 数据库 > 详细

sql 取2个日期之间的数据

时间:2015-07-08 12:36:55      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:

    1. select * from table1 where larq between(to_date(‘2008-9-3‘,‘yyyy-mm-dd‘)) and (to_date(‘2008-9-5‘,‘yyyy-mm-dd‘)) 
      2.select * from table1 where larq>=to_date(‘2008-9-3‘,‘yyyy-mm-dd‘) and larq <=to_date(‘2008-9-5‘,‘yyyy-mm-dd‘)

select count(1) from T_VEHICLE t where t.createts between to_date(‘2015-7-7 17:13:00‘,‘yyyy/mm/dd hh24:mi:ss‘) and to_date(‘2015-7-7 20:55:00‘,‘yyyy/mm/dd hh24:mi:ss‘)

to_date(‘2015-7-7 17:13:00‘,‘yyyy/mm/dd hh24:mi:ss‘)

to_char(sysdate,‘yyyy/mm/dd hh24:mi:ss‘)

to_date是oracle的文本转日期函数,必须这样用
同样,日期转文本要用to_char函数
文本转数值要用to_number函数

sql 取2个日期之间的数据

标签:

原文地址:http://www.cnblogs.com/yousen/p/4629520.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!