django中的DISTINCT ON [重复]

Posted

技术标签:

【中文标题】django中的DISTINCT ON [重复]【英文标题】:DISTINCT ON in django [duplicate] 【发布时间】:2013-03-15 14:31:40 【问题描述】:

我将如何进行以下查询:

OrderNotes.objects.filter(item=item).distinct('shared_note')

基本上,我需要获取所有 OrderNotes 项目,在 shared_note 上不同。当我尝试这样做时,我得到:

    raise NotImplementedError('DISTINCT ON fields is not supported by this database backend')

NotImplementedError: DISTINCT ON fields is not supported by this database backend

我正在使用 mysql,无法在此处更改数据库。 django 中的解决方法是什么?

【问题讨论】:

【参考方案1】:
OrderNotes.objects.filter(item=item).values_list('shared_note', flat=True).distinct()

【讨论】:

如果您希望拥有完整的对象而不仅仅是唯一值怎么办? :-) 有点卡住了...【参考方案2】:

这是我想出的最好的:

>>> items, item_ids = [], []
>>> for item in OrderNotes.objects.filter(shared_note=219):
...     if item.shared_note not in item_ids:
...         items.append(item)
...         item_ids.append(item.shared_note)

【讨论】:

以上是关于django中的DISTINCT ON [重复]的主要内容,如果未能解决你的问题,请参考以下文章

关于Django中的数据库操作API之distinct去重的一个误传

为啥子查询中的 distinct on 会损害 PostgreSQL 的性能?

使用 Pymongo 从 Mongodb 中的 Sql 转换“distinct on”查询

如何在 django 查询中使用列表 [重复]

Django 不使用 Postgres

ORACLE中的distinct消除重复行,我用where链接了多个表 查询了多个字段