我将如何执行以下查询:
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 中的解决方法是什么?