sql语句中日期时间类型怎么比较

 我来答
asian0617
推荐于2018-02-27 · TA获得超过1207个赞
知道小有建树答主
回答量:681
采纳率:78%
帮助的人:199万
展开全部
一.存储日期的字段为日期类型
MySql(Date、DateTime、TimeStamp等):
方法一:直接比较
select * from test where create_time between ‘2015-03-03 17:39:05’ and ‘2016-03-03 17:39:52’;
方法二:用unix_timestamp函数,将字符型的时间,转成unix时间戳
select * from test where unix_timestamp(create_time) >
unix_timestamp(‘2011-03-03 17:39:05’) and unix_timestamp(create_time)
< unix_timestamp(‘2011-03-03 17:39:52’);
个人觉得这样比较更踏实点儿。
Oracle(Date,TimeStamp等):
方法一:将字符串转换为日期类型
select * from test where create_time between to_date(‘2015-03-03 17:39:05’) and to_date(‘2016-03-03 17:39:52’);
二.存储日期类型的字段为数值类型
MySql(bigint):
方法一:将日期字符串转换为时间戳
select * from test where create_time > unix_timestamp(‘2011-03-03
17:39:05’) and create_time< unix_timestamp(‘2011-03-03 17:39:52’);
方法二:将时间戳转换为日期类型
select * from test where from_unixtime(create_time/1000) between ‘2014-03-03 17:39:05’ and ‘2015-03-03 17:39:52’);
看个电影先
2015-08-19 · 超过13用户采纳过TA的回答
知道答主
回答量:29
采纳率:0%
帮助的人:16.9万
展开全部
正常比较日期前后就好了,假设表名叫Table,有个字段叫CreateDate是日期类型的,如下:
select *
from Table
where CreatedDate>=CAST(DATEADD(mm, DATEDIFF(mm,0,getdate()), 0)AS datetime)
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
崔师尊
推荐于2018-02-06 · TA获得超过9316个赞
知道大有可为答主
回答量:3387
采纳率:36%
帮助的人:1726万
展开全部
oracle:
select * from table1 where date>to_date('2009-8-12 13:17:50','yyyy-mm-dd')
db2:
select * from table1 where date>date('2009-8-12 13:17:50','yyyy-mm-dd')
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式