感到困惑這我自己,但我認爲我已經解決了:-DI發現the documentation about the range lookup option非常有幫助。
當你這樣做:
YourModel.objects.filter(datetime_published__year='2008',
datetime_published__month='03',
datetime_published__day='27')
的SQL看起來像:
SELECT ... WHERE EXTRACT('year' FROM pub_date) = '2008'
AND EXTRACT('month' FROM pub_date) = '03'
AND EXTRACT('day' FROM pub_date) = '27';
而Django的通用日期爲本次此部分:
{'date_time_field__range': (datetime.datetime.combine(date, datetime.time.min),
datetime.datetime.combine(date, datetime.time.max))}
變成類似:
YourModel.objects.filter(datetime_published__range=(
datetime.datetime.combine('2008-03-27',datetime.time.min),
datetime.datetime.combine('2008-03-27',datetime.time.max)
)
沿的線條產生SQL:
SELECT ... WHERE datetime_published BETWEEN '2008-03-27 00:00:00'
AND '2008-03-27 23:59:59';
(在過去的SQL實例的時間戳的格式是錯誤很明顯,但你的想法)
希望這能回答你的問題: )
我預計最後的SQL在大多數數據庫上要快得多,因爲它可以被優化,所以使用'range'查找可能是首選方法,即使你必須使用「假」開始日期。 – hcalves 2011-11-08 22:34:46