Java,PostgreSQL时间范围查询
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java,PostgreSQL时间范围查询相关的知识,希望对你有一定的参考价值。
遇到一坑:对于如下代码
select * from order_mileagefuel where date > ‘2015-11-1‘ and date< ‘2015-11-5‘
在PostgreSQL的客户端中执行时能得到结果,但在Java中执行时(此时时间范围是参数,类型为String),如date >=#{startDay} and date <=#{endDay}
执行时报如下错误:(而对于mysql,在代码中却是能够正确执行的。)
ERROR: operator does not exist: timestamp without time zone > character varying
解决方法:将String类型的参数改为java.sql.Timestamp
以上是关于Java,PostgreSQL时间范围查询的主要内容,如果未能解决你的问题,请参考以下文章