Answers
常用的有两种方式:
- 可以通过annotate来实现,比如:
其中,yob是出生年月。Person.objects.values('yob').annotate(cNum=Count('yob')).order_by('-yob')
- 你知道SQL是如何写的,就可以使用 Manager.raw() 来执行 查询。具体的用法,可以参考 https://docs.djangoproject.com/en/1.5...
【宅腐】曾铁可
answered 10 years, 6 months ago