Hi!
I think I read somewhere that when I use a statement like:
select * from table limit 10, 20;
MySQL will select the whole table but only return rows 10-20.
I think that takes too long with large tables...
Is there a command where MySQL does NOT have to selet the whole table but only the rows that are needed, thus making the command execute/finish faster?