Jump to content

query syntax with LIMIT


kristin Lai

Recommended Posts

Hi,
I'm trying create a query that pulls data that fit certain criteria but only pulls so many at a time. I know this means using the LIMIT statement but I don't know what the exact syntax would be. Right now I have:

$queryImg = "SELECT * FROM images LIMIT $limitValue, $f_limit WHERE subID=$subID AND imgFeatured='no'";

I'm getting an error thought so I need to figure out what's wrong with my syntax.

Any suggestions?
Link to comment
https://forums.phpfreaks.com/topic/5963-query-syntax-with-limit/
Share on other sites

Just put it at the end. You may also want to use an ORDER BY clause. You can do ORDER BY RAND() if you want to display random images.

[code]SELECT * FROM images WHERE subID='$subID' AND imgFeatured='no' ORDER BY RAND() LIMIT $startrow, $rows_to_return[/code]

Also watch your quoting, leaving $subID bare could expose you to an SQL injection attack, even with magic quotes turned on.
Link to comment
https://forums.phpfreaks.com/topic/5963-query-syntax-with-limit/#findComment-21356
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.