I would like to construct a query that displays all the results in a table, but is offset by 5 from the start of the table. As far as I can tell, MySQL's LIMIT requires a limit as well as an offset. Is there any way to do this?

link|improve this question

78% accept rate
feedback

4 Answers

up vote 14 down vote accepted

From the MySQL Manual on LIMIT:

To retrieve all rows from a certain offset up to the end of the result set, you can use some large number for the second parameter. This statement retrieves all rows from the 96th row to the last:

SELECT * FROM tbl LIMIT 95, 18446744073709551615;

link|improve this answer
8  
Awful! I came here hoping that MySQL made the Limit clause optional, as it is, but also with an offset provided... but no! I've seen this 18446744073709551615 scatter all over the code and I was blaming lazy programmers, but it's a design feature! – Petruza May 24 '10 at 15:10
1  
awfull answer, but thats is official from MySQL Doc. What i can say @_@ – GusDeCooL Oct 19 '11 at 18:06
2  
18446744073709551615 is 2^64-1 for those who were wondering. You may want to watch out because you won't be able to store this value in an 32 bit integer. You have to make sure you store this as a string to ensure compatibility. – AlicanC Dec 7 '11 at 22:51
2  
Terrible! they need to get more elegant than that... Limit -1 or Limit Null looks pretty reasonable! or atleast Limit should accept a subquery like select * from table limit (select count(*) from table) – vulcan raven Jan 15 at 22:04
feedback

As you mentioned it LIMIT is required, so you need to use the biggest limit possible, which is 18446744073709551615 (maximum of unsigned BIGINT)

SELECT * FROM somewhere LIMIT 18446744073709551610 OFFSET 5
link|improve this answer
1  
Wow, is this the official solution from MySQL team? – Antony May 23 '11 at 18:11
feedback

Another approach would be to select an autoimcremented column and then filter it using HAVING.

SET @a := 0; 
select @a:=@a + 1 AS counter, table.* FROM table 
HAVING counter > 4

But I would probably stick with the high limit approach.

link|improve this answer
feedback

Just today I was reading about the best way to get huge amounts of data (more than a million rows) from a mysql table. One way is, as suggested, using LIMIT x,y where x is the offset and y the last row you want returned. However, as I found out, it isn't the most efficient way to do so. If you have an autoincrement column, you can as easily use a SELECT statement with a WHERE clause saying from which record you'd like to start.

For example, SELECT * FROM table_name WHERE id > x;

It seems that mysql gets all results when you use LIMIT and then only shows you the records that fit in the offset: not the best for performance.

Source: Answer to this question MySQL Forums. Just take note, the question is about 6 years old.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.