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?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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
limitclause with select. Fetching such large no of records at once will degrade performance.