If I have 2 sql queries one with a limit of 5 and the other with a limit or 6 they return there results in diffrent orders.
Here is a example. >>> class Book(models.Model): >>> title = models.CharField(max_length=150) >>> author = models.CharField(max_length=100) >>> book_list_1 = Books.objects.order_by('author')[0:5] >>> book_list_2 = Books.objects.order_by('author')[0:6] >>> print book_list_1 <<< [<Book: Book1>, <Book: Book2>, <Book: Book3>, <Book: Book4>, <Book: Book6>] >>> print book_list_2 <<< [<Book: Book1>, <Book: Book6>, <Book: Book2>, <Book: Book3>, <Book: Book5>, <Book: Book4>] Very confused. --~--~---------~--~----~------------~-------~--~----~ 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 django-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---