Possible Duplicate:
How do you select between two dates with Django
I have django model that contains 2 fields - c_date and c_int. As I am really weak in creating queries... is there some way to fetch from db only those records that fulfill this: c_date+timedelta(days=c_int)=date.today
? I would like to do it on DB level because it would be faster than fetching all records and comparing date for all of them.