Select between two dates with Django

后端 未结 4 2080
春和景丽
春和景丽 2020-12-04 13:35

I am looking to make a query that selects between dates with Django.

I know how to do this with raw SQL pretty easily, but how could this be achieved using the Djang

4条回答
  •  半阙折子戏
    2020-12-04 14:40

    If you are using a DateTimeField, Filtering with dates won’t include items on the last day.

    You need to casts the value as date:

    ...filter(created_at__date__range=(start_date, end_date))
    

提交回复
热议问题