開發日誌:ASP SQL日期動作陳述式小結

來源:互聯網
上載者:User

列出某一天, 上一星期的資料

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" 

時間日期

例一: 列出當天的資料

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

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.