mysql查詢今天,昨天,近7天,近30天,本月,上一月資料

來源:互聯網
上載者:User

標籤:style   io   資料   for   時間   sql   size   c   

最近項目中用到了查詢當月資料記錄的功能,最初的想法是在邏輯業務裡構造好時間段進行查詢,當寫sql語句時感覺挺麻煩。所以就到網上搜尋了一下,看看是不是能有簡單的方法。果然,網路資源很強大。下面結合我的項目表來把mysql查詢今天,昨天,近7天,近30天,本月,上一月資料的sql語句記錄一下。

有一張ad_proTrack_t 表,追蹤產品時間欄位為crt_time

查詢今天的資訊記錄:

select * from ad_proTrack_t  where to_days(`crt_time`) = to_days(now());
查詢昨天的資訊記錄:
select * from ad_proTrack_t where to_days(now()) – to_days(`crt_time`) <= 1;
查詢近7天的資訊記錄:
select * from ad_proTrack_t where date_sub(curdate(), INTERVAL 7 DAY) <= date(`crt_time`);
查詢近30天的資訊記錄:
select * from ad_proTrack_t  where date_sub(curdate(), INTERVAL 30 DAY) <= date(`crt_time`);
查詢本月的資訊記錄:
select * from ad_proTrack_t  where date_format(`crt_time`, ‘%Y%m') = date_format(curdate() , ‘%Y%m');
查詢上一月的資訊記錄:

select * from ad_proTrack_t where period_diff(date_format(now() , ‘%Y%m') , date_format(`crt_time`, ‘%Y%m')) =1;

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.