10

我想从 django 查询中提取一些特定的列

模型.py

class table
  id = models.IntegerField(primaryKey= True)
  date = models.DatetimeField()
  address = models.CharField(max_length=50)
  city = models.CharField(max_length=20)
  cityid = models.IntegerField(20)

这是我目前用于查询的内容

obj = table.objects.filter(date__range(start,end)).values('id','date','address','city','date').annotate(count= Count('cityid')).order_by('date','-count')

我希望有一个类似于此的 SQL 查询

 select DATE(date), id,address,city, COUNT(cityid) as count from table where date between "start" and "end" group by DATE(date), address,id, city order by DATE(date) ASC,count DESC;
4

2 回答 2

23

至少在 Django 1.10.5 中,你可以使用这样的东西,没有extraand RawSQL

from django.db.models.functions import Cast
from django.db.models.fields import DateField
table.objects.annotate(date_only=Cast('date', DateField()))

对于过滤,您可以使用date查找(https://docs.djangoproject.com/en/1.11/ref/models/querysets/#date):

table.objects.filter(date__date__range=(start, end))
于 2017-03-04T11:46:46.140 回答
6

对于以下情况。

select DATE(date), id,address,city, COUNT(cityid) as count from table where date between "start" and "end" group by DATE(date), address,id, city order by DATE(date) ASC,count DESC;

您可以在可以实现数据库功能的地方使用额外的。

Table.objects.filter(date__range(start,end)).extra(select={'date':'DATE(date)','count':'COUNT(cityid)'}).values('date','id','address_city').order_by('date')

希望它会帮助你。

谢谢。

于 2013-11-21T14:15:36.687 回答