I would be easier to see it as a django table, but you'll need to checkout the distinct() feature of the queryset
http://docs.djangoproject.com/en/dev/ref/models/querysets/#distinct But yes, I'd say it's possible. J On Nov 30, 4:10 pm, Ali Rıza Keleş <ali.r.ke...@gmail.com> wrote: > Hi all, > > I need a little custom db query. My db table with sample data: > > id content_id author_id order is_public > 1 68 1 1 1 > 3 189 2 2 1 > 4 154 2 3 1 > > I want to catch unique authors public content ordered by order field. > > The result must be: > > id content_id author_id order is_public > 1 68 1 1 1 > 3 189 2 2 1 > > How can I do it? > > Thanks.. > > -- > Ali -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.