Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3398182
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T04:37:06+00:00 2026-05-18T04:37:06+00:00

(I have a django 1.1.2 and postgresql as development environment.) I have two queries:

  • 0

(I have a django 1.1.2 and postgresql as development environment.)
I have two queries:

tables = Table.objects.filter(is_active = True,
                               finishes_at__lt=datetime.datetime.now()
                              ).order_by("-starts_at", "weight")[:20]

and the other one is

tables = Table.objects.filter(is_active = True,
                              finishes_at__lt=datetime.datetime.now()
                             ).order_by("-starts_at", "weight")

Both of those queries are same except the first one has [:20] (LIMIT 20) at the end.
But When I run both of those queries. I saw that resultsets have different orders. Is there a way to correct this?

Note:
I run the queries in dbshell and I saw that queries actually giving results in different order. here are the queries django generated

SELECT "table_table"."id" FROM "table_table" 
WHERE ("table_table"."is_active" = True  
       AND "table_table"."finishes_at" < '2010-11-09 11:57:48.482720' )
ORDER BY "table_table"."starts_at" DESC, "table_table"."weight" ASC

and the one with the limit is

SELECT "table_table"."id" FROM "table_table" 
WHERE ("table_table"."is_active" = True  
       AND "table_table"."finishes_at" < '2010-11-09 11:57:48.482720' ) 
ORDER BY "table_table"."starts_at" DESC, "table_table"."weight" ASC LIMIT 20
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-18T04:37:06+00:00Added an answer on May 18, 2026 at 4:37 am

    +1 for the details, however it sounds a bit fishy to me that you actually managed to get datetime.datetime.now() to produce the same value and capture the SQL, so please confirm that you actually did pass the same value and that the above SQL’s were actually captured in the log.

    As far as the answer goes, I can only address it partially – from the point of SQLs.
    The two SQLs will produce the same order when run against the same data.

    You can count on that.

    So providing that SQL’s do come from the log and that they were run on the same data you are either further manipulating thing on the django side or your testing was not done well.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a Django model with a large number of fields and 20000+ table
I have done a little Django development, but it has all been in a
I have a strange behaviour on my Django/PostgreSQL system. After saving a model object
Does Django have any template tags to generate common HTML markup? For example, I
If I have a Django form such as: class ContactForm(forms.Form): subject = forms.CharField(max_length=100) message
I have written a Django app that makes use of Python threading to create
I have the following Django and Flex code: Django class Author(models.Model): name = models.CharField(max_length=30)
I have configured my Django app to run under Apache+FastCGI on Linux (Ubuntu, if
I stumbled over this passage in the Django tutorial : Django models have a
I have a pretty standard django app, and am wondering how to set the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.