Should the result be consistent if using Limit without Order By in MySQL
Should the result be consistent if using Limit without Order By in MySQL, e.g.
SELECT * FROM LARGE_TABLE LIMIT 1000, 10;
I am using PHP, so开发者_JS百科 option such as discussed in this post cannot be used.
No, it is not guaranteed to be consistent. the results may defer from time to time (but this is not guaranteed either)
精彩评论