作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
此 SQL 查询的正确 Django View 和 HTML 是什么?:
SELECT
hood.`hood`,
COUNT(business.`id`) AS TOTAL
FROM
`hood`
JOIN business
ON hood.`id` = business.`hood_id`
WHERE business.`city_id` = 8
GROUP BY hood.`id`
ORDER BY TOTAL DESC
LIMIT 5 ;
我的模型是:
class Hood(models.Model):
name = models.CharField(max_length=50, db_column='hood')
slugname = models.SlugField(max_length=50, blank=True)
city = models.ForeignKey('City', related_name='hoods')
location = models.ForeignKey('Location', related_name='hoods')
switch = models.SmallIntegerField(null=True, blank=True, default='1')
class Meta:
db_table = 'hood'
class Business(models.Model):
name = models.CharField(max_length=50, db_column='name', blank=True)
slugname = models.SlugField(max_length=50, blank=True)
city = models.ForeignKey('City', related_name="business")
hood = models.ForeignKey('Hood', null=True, blank=True, related_name="business")
....
还有 HTML 模板?
谢谢!
最佳答案
查看关于聚合的文档: https://docs.djangoproject.com/en/1.6/topics/db/aggregation/
您应该能够编写一个 View ,该 View 返回一个查询集,其计数与此类似:
from django.db.models import Count
Hood.objects.filter(business__city_id=8).annotate(bus_count=Count('business__id'))
至于 HTML,这完全取决于您。不过,如果您提供该查询集,则可以使用 {{ object.bus_count }}
获取计数。
关于python - 带有 JOIN 和 GROUP BY SQL 查询的 Django COUNT,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22414042/
我是一名优秀的程序员,十分优秀!