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

  • SEARCH
  • Home
  • 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 7876465
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T03:10:16+00:00 2026-06-03T03:10:16+00:00

Will the following two SQL statements always produce the same result set? 1. SELECT

  • 0

Will the following two SQL statements always produce the same result set?

 1. SELECT * FROM MyTable where Status='0' order by StartTime asc limit 10

 2. SELECT * FROM (SELECT * FROM MyTable where Status='0' order by StartTime asc) limit 10
  • 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-06-03T03:10:17+00:00Added an answer on June 3, 2026 at 3:10 am

    No. First because the StartTime column may not have UNIQUE constraint. So, even the first query may not always produce the same result – with itself!

    Second, even if there are never two rows with same StartTime, the answer is still negative.

    The first statement will always order on StartTime and produce the first 10 rows. The second query may produce the same result set but only with a primitive optimizer that doesn’t understand that the ORDER BY in the subquery is redundant. And only if the execution plan includes this ordering phase.

    The SQLite query optimizer may (at the moment) not be very bright and do just that (no idea really, we’ll have to check the source code of SQLite*). So, it may appear that the two queries are producing identical results all the time. Still, it’s not a good idea to count on it. You never know what changes will be made in a future version of SQLite.

    I think it’s not good practice to use LIMIT without ORDER BY, in any DBMS. It may work now, but you never know how long these queries will be used by the application. And you may not be around when SQLite is upgraded or the DBMS is changed.

    (*) @Gareth’s link provides the execution plan which suggests that current SQLite code is dumb enough to execute the redundant ordering.

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

Sidebar

Related Questions

Will there be a difference between the following two ways of calling a function
Will the following code result in a deadlock using C# on .NET? class MyClass
Will the following query evaluate to true (1), false (0), or NULL? SELECT '%'
I have difficulty understanding SELECT * FROM myTable WHERE 0 = ... in the
Background Create a series of SQL JOIN statements using two operands: primary and secondary.
I have the following T-SQL code: SET TRANSACTION ISOLATION LEVEL SERIALIZABLE BEGIN TRANSACTION T1_Test
When using SQLite database from Javascript you will use the following statement to get
Will the following append() in the catch cause the rethrown exception to see the
Will the following program cause any problem during compiling and execution process? class A{
Will the following filter create an arbitrary shape? filter(product.product*store.store, my_measure>1.0) We place it in

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.