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.


Reply via email to