asp实现ACCESS中日期时间的比较

13 篇文章 0 订阅
本文详细介绍了如何在ASP编程中使用ACCESS数据库进行日期时间条件查询,包括基本的比较操作符应用、动态时间变量的处理以及各种特定时间范围(如一天、一周、月份等)的SQL语句示例。
摘要由CSDN通过智能技术生成

今天程序中要实现时间作为查询条件的功能!使用的是ASP+ACCESS。  
   在ACCESS数据库中,日期时间的比较操作符主要有>= 、<=、=三个!但不能直接把比较时间用这些操作符相连!为了区分时间类型和其它类型,ACCESS中在时间比较时在时间两端要加上#!

例如,要查询2007-1-1日到2007-7-2日之间的信息,SQL语句可以写成:

Select * form table where datefield >=#2007-1-1# and datefield <=#2007-7-2#

在asp程序中对应得SQL串为:

exsql="select * form table where datefield >= # 2007-1-1 # and datefield<=# 2007-7-2 # "

如果把查询的时间换成一个其他页面传来的变量的话,SQL串对应修改为:

exsql="select * from table where datefield>=#" &Begindate& "# and datefield<= #" &Enddate& "#" ,其中变量Begindate和Enddate分别是查询的起始时间和结束时间。

在网上还找到了一些相关的文章,我也一并附在后面,希望能给需要的朋友有些启示和帮助:

列出某一天, 上一星期的数据:

SELECT distinct dateandtime FROM ctdate_by_query_date WHERE dateandtime between ((#2006-5-15#+(Weekday(2006-5-15)-7))-6) and (#2006-5-15#-7)+Weekday(2006-5-15)

sql="SELECT distinct dateandtime FROM ctarticle WHERE dateandtime between ((#"&date&"#+(Weekday("&date&")"&norp&"7))-6) and (#"&date&"#"&norp&"7)+Weekday("&date&")"

  查询一天, 所隶属星期所有天数的数据:

SELECT * FROM ctdate_by_query_date WHERE dateandtime between ((#2006-5-15#+Weekday(2006-5-15))-6) and #2006-5-15#+Weekday(2006-5-15)

查询一个时间段 SELECT * FROM ctdate_by_query_date WHERE dateandtime between #2006-5-1# and #2006-5-30#

列出不同年份的年份, 并且不要相同:

select distinct year(dateandtime) from ctarticle

结果如:  Expr1000 2000 2003 2004 2005 2006

列出某一天, 上一年的第一条记录:

SELECT top 1 dateandtime FROM ctarticle where year(dateandtime)=(2006)-1

sql="SELECT top 1 dateandtime FROM ctarticle where year(dateandtime)=(year(#"&date&"#))"&norp  

列出某一年的数据:

sql="select * from ctdate_by_query_date where year(dateandtime)="&year(rqqdt_)&" order by dateandtime desc" 查找上一月中的第一条记录:

SELECT top 1 dateandtime FROM ctarticle where year(dateandtime)=year(#2006-5-28#) and  month(dateandtime)=month(#2006-5-28#)-1

列出某一月的数据:

sql="select * from ctdate_by_query_date where year(dateandtime)="&year(rqqdt_)&" and month(dateandtime)="&month(rqqdt_)&" order by dateandtime desc"

列出某一日的数据:

sql="select * from ctdate_by_query_date where dateandtime=#"&rqqdt_&"# order by a.articleid desc"

列出当天的数据:

ql="select * from ctdate_by_query_date where dateandtime=date() order by a.articleid desc"
 

  • 19
    点赞
  • 20
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值