免费观看又色又爽又黄的小说免费_美女福利视频国产片_亚洲欧美精品_美国一级大黄大色毛片

mysql如何查詢近一周的數據

這篇文章主要介紹“MySQL如何查詢近一周的數據”,在日常操作中,相信很多人在mysql如何查詢近一周的數據問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”mysql如何查詢近一周的數據”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

創新互聯成都企業網站建設服務,提供成都做網站、網站建設網站開發,網站定制,建網站,網站搭建,網站設計,成都響應式網站建設,網頁設計師打造企業風格網站,提供周到的售前咨詢和貼心的售后服務。歡迎咨詢做網站需要多少錢:028-86922220

在mysql中,可以利用select語句查詢近一周的數據,語法為“select * from table  where DATE_SUB(CURDATE(), INTERVAL 7 DAY) <= date(column_time);”。

本教程操作環境:windows10系統、mysql8.0.22版本、Dell G3電腦。

mysql怎么查詢近一周的數據

語法如下:

select * from table  where DATE_SUB(CURDATE(), INTERVAL 7 DAY) <= date(column_time);

拓展知識:

查詢一天:

select * from table where to_days(column_time) = to_days(now());
select * from table where date(column_time) = curdate();

查詢一個月:

select * from table  where DATE_SUB(CURDATE(), INTERVAL INTERVAL 1 MONTH) <= date(column_time);

示例如下:

效果如圖(這里SQL語句中的一周范圍是指星期一到星期日,星期一為一周的第一天,因是8月11日查詢的,所以只顯示星期一到星期六的結果):

mysql如何查詢近一周的數據

日歷:

mysql如何查詢近一周的數據

簡單來說就是用今天的日期生成前七天的日期(利用union all命令),并根據星期一的日期條件刷選出本周的日期

        SELECT  DATE(subdate(curdate(),date_format(curdate(),'%w')-1)) as thisweek  
        union all  
        SELECT  DATE(DATE_ADD(subdate(curdate(),date_format(curdate(),'%w')-1), interval 1 day)) as thisweek  
        union all  
        SELECT  DATE(DATE_ADD(subdate(curdate(),date_format(curdate(),'%w')-1), interval 2 day)) as thisweek  
        union all  
        SELECT  DATE(DATE_ADD(subdate(curdate(),date_format(curdate(),'%w')-1), interval 3 day)) as thisweek  
        union all  
        SELECT  DATE(DATE_ADD(subdate(curdate(),date_format(curdate(),'%w')-1), interval 4 day)) as thisweek  
        union all  
        SELECT DATE(DATE_ADD(subdate(curdate(),date_format(curdate(),'%w')-1), interval 5 day)) as thisweek  
        union all  
        SELECT DATE(DATE_ADD(subdate(curdate(),date_format(curdate(),'%w')-1), interval 6 day)) as thisweek

mysql如何查詢近一周的數據

解析:

SELECT DATE(subdate(curdate(),date_format(curdate(),’%w’)-1))

得到的是這周的第一天(星期一到星期天為一周);也即8月6日

到此,關于“mysql如何查詢近一周的數據”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注創新互聯網站,小編會繼續努力為大家帶來更多實用的文章!

本文名稱:mysql如何查詢近一周的數據
文章URL:http://m.newbst.com/article18/jeiggp.html

成都網站建設公司_創新互聯,為您提供網站營銷全網營銷推廣微信公眾號軟件開發網站內鏈外貿建站

廣告

聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯

h5響應式網站建設