I have a MySQL database and a table with about 128,000 rows (pretty tiny from what I understand). I also have an application connected to it that is set up to do paging. My SQL queries look something like this:
SELECT * FROM Documents WHERE PortfolioId = ? LIMIT ?,?
SELECT * FROM Documents WHERE PortfolioId = ? ORDER BY Date DESC LIMIT ?,?
My problem is twofold. First, regardless of which query is used, the higher the first "LIMIT" number, the slower the query returns, eventually moving into an unacceptable delay. For instance, if I go to phpmyadmin and execute:
SELECT * FROM Documents WHERE PortfolioId = 1 LIMIT 0,20
The query takes .001 seconds. However, when I execute this:
SELECT * FROM Documents WHERE PortfolioId = 1 LIMIT 120000,20
The query takes 14.8 seconds.
My second problem is that the second query where I order by Date (which is also indexed in the table), makes the respective queries take much, much longer (.1 seconds for the first example, 2 minutes and 23 seconds for the second example).
Is there a better way to execute these queries so they are much faster? From my understanding, developers often implement paging on tables that have millions of rows but, doing it this way, it would take an extremely long time for the later pages to load.
Documentstable and using that in subsequent queries. i.e.SELECT * FROM Documents WHERE PortfolioId = 1 AND DocumentId > ? LIMIT 20. Note however that this will give different results than your current method if the table is updated between queries. – Michael Mior Jul 15 '12 at 5:47WHERE Date >= LAST_DATE AND DocumentId > LAST_IDshould work if you useORDER BY Date, DocumentId. – Michael Mior Jul 15 '12 at 18:57