私は特定のテーブルから別の行を取得する必要があるdjangoモデルクエリを持っていますが、何らかの理由でそれをフェッチしていません。DjangoモデルDistinct句
は私はあなたの入力あなたは明確なVolunteercontacts
モデルと明確なname
列の値を区別する必要があり
クエリ
Volunteercontacts.objects.order_by('name')- gives me the expected answer ie;ordering by name
Volunteercontacts.objects.order_by('name').distinct('name')- does not eliminate the duplicate
https://docs.djangoproject.com/en/dev/ref/models/querysets/ #distinctおよびhttp://stackoverflow.com/questions/453477/queryset-api-distinct-does-not-work/460702#460702 – dm03514
出力を表示します。また、メソッド呼び出しの順序を逆にしてみてください。 – Marcin