查询两个日期(时间)以内的数据,between and 或 and 连>= <=,to_date()

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了查询两个日期(时间)以内的数据,between and 或 and 连>= <=,to_date()相关的知识,希望对你有一定的参考价值。

between and 方法 

Sql代码  技术分享
  1. select * from kk.kkhmd where larq between(to_date(‘2008-9-3‘,‘yyyy-mm-dd‘)) and (to_date(‘2008-9-5‘,‘yyyy-mm-dd‘))  



用and连接 >= <= 方法 

Sql代码  技术分享
    1. select * from kk.kkhmd where larq>=to_date(‘2008-9-3‘,‘yyyy-mm-dd‘) and larq <=to_date(‘2008-9-5‘,‘yyyy-mm-dd‘)  

转载至:http://heisetoufa.iteye.com/blog/239718

以上是关于查询两个日期(时间)以内的数据,between and 或 and 连>= <=,to_date()的主要内容,如果未能解决你的问题,请参考以下文章

【SQL语句】-范围查询

在 CRAN R 中使用 BETWEEN 命令进行 SQL 查询以选择日期

SQL数据库怎么查询,between 当前日期 and 当前日期前30天,之间的数据

pandas使用query函数查询指定日期索引之间对应的dataframe数据行(select rows date index between a certain date interval)

BETWEEN 行为不具有包容性

MYSQL怎么查询两个时间之间的日期列表