I have one table that contain more that 40 thousand record when I retrieve record that satisfy particular condition it takes so much time.
Is there any solution to increase performance ?
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.
If you are doing a lot of querying based on another column that isn’t your primary key, try adding an index to that column you are putting in your
WHEREclause.Also, optimizing
JOINs will help if you are using any.