Py学习  »  Django

如何根据数据表里面的datetime字段进行排序?

加个小括号_ • 8 年前 • 1908 次点击  
class CommissionRecord(models.Model):
    user = models.ForeignKey(User)
    no = models.CharField(max_length=100)
    add_time = models.DateTimeField(auto_now_add=True)
    desc = models.CharField(max_length=100)
    amount = models.IntegerField()
    bid = models.ForeignKey(Bid)

如何根据该表取出今天的记录,本周的记录,本月的记录,踩了好多坑啊,感觉都不行,datetime.date.today()也不行。

Python社区是高质量的Python/Django开发社区
本文地址:http://www.python88.com/topic/3064
 
1908 次点击  
文章 [ 4 ]  |  最新文章 8 年前