MySQL select all rows from last month until (now() - 1 month), for comparative purposes

后端 未结 10 488
北海茫月
北海茫月 2020-12-07 18:12

I need some help writing a MySQL query to show me rows from last month, but not the whole month, only up and until the same day, hour and minute as it is now(), but 1 month

10条回答
  •  萌比男神i
    2020-12-07 18:50

    SELECT * 
    FROM 
          
    WHERE 
          
    BETWEEN 
         DATE_SUB(NOW(), INTERVAL 1 MONTH) AND NOW();
    

    Similarly, You can select records for 1 month, 2 months etc.

提交回复
热议问题