Is there a limit number of records PHP/MySQL will display?

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
michlcamp
Forum Commoner
Posts: 78
Joined: Mon Jul 18, 2005 11:06 pm

Is there a limit number of records PHP/MySQL will display?

Post by michlcamp »

Is there a limit to the number of records a mySQL query will display?
I have a table with about 300 records in it but the query only displays about 270 of them...

thanks in advance.
mc
User avatar
feyd
Neighborhood Spidermoddy
Posts: 31559
Joined: Mon Mar 29, 2004 3:24 pm
Location: Bothell, Washington, USA

Post by feyd »

What's the query? Basically, if there are any clauses like WHERE, LIMIT, GROUP BY, and several others, records may get excluded because they don't fall into the criteria supplied.
Post Reply