ASP ACCESS 日期操作語(yǔ)句小結(jié) By Stabx
更新時(shí)間:2006年10月19日 00:00:00 作者:
復(fù)制代碼 代碼如下:
13.5.1 列出某一天, 上一星期的數(shù)據(jù)
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&")"
13.5 查詢一天, 所隸屬星期所有天數(shù)的數(shù)據(jù)
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)
13.4 查詢一個(gè)時(shí)間段
SELECT *
FROM ctdate_by_query_date
WHERE dateandtime between #2006-5-1# and #2006-5-30#
13.3.2 列出不同年份的年份, 并且不要相同
select distinct year(dateandtime) from ctarticle
結(jié)果如:
Expr1000
2000
2003
2004
2005
2006
13.3.1 列出某一天, 上一年的第一條記錄
SELECT top 1 dateandtime FROM ctarticle where year(dateandtime)=(2006)-1
sql="SELECT top 1 dateandtime FROM ctarticle where year(dateandtime)=(year(#"&date&"#))"&norp
13.3 列出某一年的數(shù)據(jù)
sql="select * from ctdate_by_query_date where year(dateandtime)="&year(rqqdt_)&" order by dateandtime desc"
13.2.1 查找上一月中的第一條記錄
SELECT top 1 dateandtime FROM ctarticle where year(dateandtime)=year(#2006-5-28#) and month(dateandtime)=month(#2006-5-28#)-1
13.2 列出某一月的數(shù)據(jù)
sql="select * from ctdate_by_query_date where year(dateandtime)="&year(rqqdt_)&" and month(dateandtime)="&month(rqqdt_)&" order by dateandtime desc"
13.1 列出某一日的數(shù)據(jù)
sql="select * from ctdate_by_query_date where dateandtime=#"&rqqdt_&"# order by a.articleid desc"
13. 時(shí)間日期
例一: 列出當(dāng)天的數(shù)據(jù)
sql="select * from ctdate_by_query_date where dateandtime=date() order by a.articleid desc"
您可能感興趣的文章:
- access數(shù)據(jù)庫(kù)的一些少用操作,ASP,創(chuàng)建數(shù)據(jù)庫(kù)文件,創(chuàng)建表,創(chuàng)建字段,ADOX
- asp 獲取access系統(tǒng)表,查詢等操作代碼
- Asp 操作Access數(shù)據(jù)庫(kù)時(shí)出現(xiàn)死鎖.ldb的解決方法
- asp.net(C#) Access 數(shù)據(jù)操作類
- asp實(shí)現(xiàn)的查詢某關(guān)鍵詞在MSSQL數(shù)據(jù)庫(kù)位置的代碼
- asp 在線備份與恢復(fù)sqlserver數(shù)據(jù)庫(kù)的代碼
- asp終極防范SQL注入漏洞
- asp連接mysql數(shù)據(jù)庫(kù)詳細(xì)實(shí)現(xiàn)代碼
- asp連接access、sql數(shù)據(jù)庫(kù)代碼及數(shù)據(jù)庫(kù)操作代碼
- asp操作access提示無(wú)法從指定的數(shù)據(jù)表中刪除原因分析及解決
- ASP中巧用Split()函數(shù)生成SQL查詢語(yǔ)句的實(shí)例
- asp執(zhí)行帶參數(shù)的sql語(yǔ)句實(shí)例
- ASP 連接 SQL SERVER 2008的方法
- ASP通過(guò)ODBC連接SQL Server 2008數(shù)據(jù)庫(kù)的方法
- ASP語(yǔ)言實(shí)現(xiàn)對(duì)SQL SERVER數(shù)據(jù)庫(kù)的操作
相關(guān)文章
ASP 獲取文件擴(kuò)展名函數(shù)getFileExt()
利用了asp的instrrev獲取最后.的位置,然后進(jìn)行截取,大家可以自己測(cè)試,其實(shí)編程過(guò)程也是大量的測(cè)試,慢慢就會(huì)發(fā)現(xiàn)更多的好東西。2009-08-08ASP,PHP與.NET偽造HTTP-REFERER方法及防止偽造REFERER方法探討
這篇文章主要介紹了ASP,PHP與.NET偽造HTTP-REFERER方法及防止偽造REFERER方法探討,需要的朋友可以參考下2007-02-02asp 多關(guān)鍵詞搜索的簡(jiǎn)單實(shí)現(xiàn)方法
asp搜索兩個(gè)以上的詞的實(shí)現(xiàn)方法,簡(jiǎn)單的就是利用split,其它的可以參考本站之前更新的文章2008-11-11asp 得到動(dòng)態(tài)數(shù)組中元素的個(gè)數(shù)
主要用到了 ubound(數(shù)組的名稱) 這個(gè)函數(shù),這個(gè)函數(shù)用來(lái)求數(shù)組的上邊界。2009-06-06access數(shù)據(jù)庫(kù)的一些少用操作,ASP,創(chuàng)建數(shù)據(jù)庫(kù)文件,創(chuàng)建表,創(chuàng)建字段,ADOX
access數(shù)據(jù)庫(kù)的一些少用操作,ASP,創(chuàng)建數(shù)據(jù)庫(kù)文件,創(chuàng)建表,創(chuàng)建字段,ADOX...2006-10-10ASP模仿google suggest風(fēng)格實(shí)現(xiàn)下拉菜單效果
這篇文章主要介紹了ASP模仿google suggest風(fēng)格實(shí)現(xiàn)下拉菜單效果,需要的朋友可以參考下2015-09-09