Reputation: 407
I am using MYSQL SELECT query for fetching records. If i have 500,000 of user's record in my users table. does SELECT query support?
Upvotes: 0
Views: 231
Reputation:
Yes you can. even you can get more then 500000 rows. There is no such limit by mysql.
But you should control no of records by programming language using pagination and using limit
clause with select. Fetching such large no of records at once will degrade performance.
Upvotes: 0