我有一个名为MyModel的模型,它有一些虚拟数据如下:
item date value
------------------------------
ab 8/10/12 124
ab 7/10/12 433
ab 6/10/12 99
abc 8/10/12 23
abc 7/10/12 80
我想以这样一种方式查询这个模型:我得到如下输出:
[{'item': 'ab', 'values': [ 124, 433, 99]},
{'item': 'abc', 'values': [ 23, 80]}]
我如何使用django ORM做到这一点?
答案 0 :(得分:10)
(4月4日' 16)更新:这是Django< = 1.7的有效解决方案。如需更新版本,请阅读文档中的Creating your own Aggregate Functions。
使用取自here( an article about the topic )的自定义Concat
汇总
定义:
class Concat(models.Aggregate):
def add_to_query(self, query, alias, col, source, is_summary):
#we send source=CharField to prevent Django from casting string to int
aggregate = SQLConcat(col, source=models.CharField(), is_summary=is_summary, **self.extra)
query.aggregates[alias] = aggregate
#for mysql
class SQLConcat(models.sql.aggregates.Aggregate):
sql_function = 'group_concat'
@property
def sql_template(self):
if self.extra.get('separator'):
return '%(function)s(%(field)s SEPARATOR "%(separator)s")'
else:
return '%(function)s(%(field)s)'
#For PostgreSQL >= 9.0
#Aways use with separator, e.g. .annotate(values=Concat('value', separator=','))
class SQLConcat(models.sql.aggregates.Aggregate):
sql_function = 'string_agg'
@property
def sql_template(self):
#the ::text cast is a hardcoded hack to work with integer columns
return "%(function)s(%(field)s::text, '%(separator)s')"
#For PostgreSQL >= 8.4 and < 9.0
#Aways use with separator, e.g. .annotate(values=Concat('value', separator=','))
class SQLConcat(models.sql.aggregates.Aggregate):
sql_function = 'array_to_string'
@property
def sql_template(self):
return "%(function)s(array_agg(%(field)s), '%(separator)s')"
#For PostgreSQL < 8.4 you should define array_agg before using it:
#CREATE AGGREGATE array_agg (anyelement)
#(
# sfunc = array_append,
# stype = anyarray,
# initcond = '{}'
#);
class MyModel(models.Model):
item = models.CharField(max_length = 255)
date = models.DateTimeField()
value = models.IntegerField()
现在你可以这样做:
>>> from my_app.models import MyModel, Concat
>>> MyModel.objects.values('item').annotate(values=Concat('value'))
[{'item': u'ab', 'values': u'124,433,99'}, {'item': u'abc', 'values': u'23,80'}]
要将values
作为整数列表,您需要手动.split
并转换为int
。类似的东西:
>>> my_list = MyModel.objects.values('item').annotate(values=Concat('value'))
>>> for i in my_list:
... i['values'] = [int(v) for v in i['values'].split(',')]
...
>>> my_list
[{'item': u'ab', 'values': [124, 433, 99]}, {'item': u'abc', 'values': [23, 80]}]
答案 1 :(得分:2)
如果您的Django由PostgreSQL支持,您可以将extra
与string_agg
结合使用。
https://docs.djangoproject.com/en/1.8/ref/models/querysets/#extra http://www.postgresql.org/docs/9.4/static/sql-expressions.html#SYNTAX-AGGREGATES
假设您发布的表是一个ManyToManyRelation,item
实际上是对模型MyModel
的引用,模型表为mymodel
,映射表为mymodel_value
:
MyModel.objects.extra(select={
'values':
"""
SELECT string_agg(value, ', ' ORDER BY value)
FROM mymodel_value
WHERE mymodel.id=mymodel_value.item
"""
}).values('values')
生成的字典将有一个条目values
,其中的字符串作为值,即每个item
的值的连接(聚合)列表。
在Django shell(./manage.py shell
)中尝试此操作。您可能必须在子选择中添加更多表,以防ORM尚未添加这些表。 (主模型表肯定应该存在。)这取决于模型关系的复杂程度。
启用DB日志记录以检查ORM生成的查询。