MySQL Forums
Forum List  »  Performance

Re: does this "top-200" query do a table scan
Posted by: Peter Brawley
Date: October 31, 2015 12:22AM

> I want the minimum id values to be returned.

It doesn't do that. Is this what you mean?

select id_c
from Article_t
where progressMade_c < <maxvalue>
order by id_c limit 200 ;

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: does this "top-200" query do a table scan
744
October 31, 2015 12:22AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.