java怎么比较timestamp
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java怎么比较timestamp相关的知识,希望对你有一定的参考价值。
Timestamp是一个与 java.util.Date 类有关的瘦包装器 (thin wrapper),它允许 JDBC API 将该类标识为 SQL TIMESTAMP 值。它添加保存 SQL TIMESTAMP 毫微秒值和提供支持时间戳值的 JDBC 转义语法的格式化和解析操作的能力。注:此类型由 java.util.Date 和单独的毫微秒值组成。只有整数秒才会存储在 java.util.Date 组件中。小数秒(毫微秒)是独立存在的。传递 java.util.Date 类型的值时,Timestamp.equals(Object) 方法永远不会返回 true,因为日期的毫微秒组件是未知的。因此,相对于 java.util.Date.equals(Object) 方法而言,Timestamp.equals(Object) 方法是不对称的。此外,hashcode 方法使用基础 java.util.Date 实现并因此在其计算中不包括毫微秒。
鉴于 Timestamp 类和上述 java.util.Date 类之间的不同,建议代码一般不要将 Timestamp 值视为 java.util.Date 的实例。Timestamp 和 java.util.Date 之间的继承关系实际上指的是实现继承,而不是类型继承。 参考技术A timestamp:占用 4 字节,内部实现是新纪元时间(1970-01-01 00:00:00)以来的秒,那么这种格式在展示给用户的时候就需要做必要的时区转换才能得到正确数据。
sql语句中日期时间类型怎么比较
一.存储日期的字段为日期类型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’); 参考技术A 正常比较日期前后就好了,假设表名叫Table,有个字段叫CreateDate是日期类型的,如下:
select *
from Table
where CreatedDate>=CAST(DATEADD(mm, DATEDIFF(mm,0,getdate()), 0)AS datetime) 参考技术B 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')本回答被提问者和网友采纳
以上是关于java怎么比较timestamp的主要内容,如果未能解决你的问题,请参考以下文章