vote up 1 vote down star
2

Say I have 50 rows in a MySQL table. I want to select the first ten (LIMIT 10), but then I want to be able to select the next 10 on a different page.

So how do I start my selection, after row 10?

Updated query:

mysql_query("
    SELECT * FROM `picdb`
    WHERE `username` = '$username'
    ORDER BY `picid` DESC
    LIMIT '$start','$count'
")
flag

1  
Try mysql_query("SELECT * FROM picdb WHERE username = '$username' ORDER BY picid DESC LIMIT $start,$count") – Rufinus Aug 10 at 0:32
1  
Re edit, you should get your error feedback set up to the point that it will tell you what's wrong with your SQL. You'll find you have a syntax error because your LIMIT clause is before your ORDER BY clause. – chaos Aug 10 at 0:32
thanks guys, works fine now. – Patrick Aug 10 at 0:41

2 Answers

vote up 11 vote down check
LIMIT 10, 10

then

LIMIT 20, 10

for the next page, and so on.

link|flag
vote up 6 vote down
LIMIT 10

LIMIT 10 OFFSET 10

From the MySQL 5.1 docs on SELECT syntax:

For compatibility with PostgreSQL, MySQL also supports the LIMIT row_count OFFSET offset syntax.

link|flag
1  
Is that valid? I've never seen that. – Mark Aug 10 at 0:42
3  
I'm not sure how widespread OFFSET is; but its a little clearer since you don't have to remember which number is the limit and which is the offset. – Karl Voigtland Aug 10 at 0:46
1  
+1 because I didn't know they'd put that in. – chaos Aug 10 at 1:37
1  
+1 because it's clearer this way – The Disintegrator Aug 10 at 3:17

Your Answer

Get an OpenID
or

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