Here comes the question about the proper usage of queryset's distinct () method. As i have a queryset model.objects.filter (column='name').distinct() , the distinct method is applied to whole objects, but i'd like it to be applied to column. Django makes SQL query "SELECT DISTINCT column, column2, column3 from TABLE WHERE 'column'='name'. How could i tell django to make querie SELECT DISTINCT column from TABLE WHERE 'column'='name' so that the comparison would be made for the single attribute , not for whole objects. As i guess performing such filtering in SQL server is much resource-savy than in view level, or template level of django. thanks for any ideas!
--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---