How to select last 6 months from news table using MySQL

前端 未结 6 1874
生来不讨喜
生来不讨喜 2020-12-07 16:22

I am trying to select the last 6 months of entries in a table, I have a column called datetime and this is in a datetime mysql format.

I have seen many ways using in

6条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-07 17:01

    Try this:

    select *
      from table 
     where your_dt_field >= date_sub(now(), interval 6 month);
    

    Query reads: give me all entries in table where the field corresponding to the entry date is newer than 6 months.

提交回复
热议问题