您好,登錄后才能下訂單哦!
小編給大家分享一下django中的時間段查詢應(yīng)該如何處理,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
注意:這里發(fā)布時間(publish_time)的字段類型應(yīng)該是date或者datetime,否則不在本文討論范圍。
now = datetime.datetime.now()
start = datetime.datetime(2017,1,1)
1、大于某個時間(gt)
Aticle.objects .filter(publish_time__gt=now)
2、大于等于某個時間(gte)
Aticle.objects .filter(publish_time__gte=now)
3、小于某個時間(lt)
Aticle.objects .filter(publish_time__lt=now)
4、小于等于某個時間(lte)
Aticle.objects .filter(publish_time__lte=now)
5、查詢時間段(range)
Aticle.objects .filter(publish_time__range=(start,now))
6、查詢某年(year)
Aticle.objects .filter(publish_time__year=now.year)
7、查詢某月(month)
Aticle.objects .filter(publish_time__month=now.month)
8、查詢某天(day)
Aticle.objects .filter(publish_time__day=now.day)
9、查詢星期幾(week_day)
Aticle.objects .filter(publish_time__week_day=1)
以上是“django中的時間段查詢應(yīng)該如何處理”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。