How can we optimize or increase the speed of a mysql select
query?
Answers were Sorted based on User's Feedback
Answer / shanmuga
Using Proper Index.
Using LIMIT
using Primary KEy.
Important : Whenever the huge no of updation or deletion
happened in that table use OPTIMIZE TABLE command.This will
reduce the unused space.
| Is This Answer Correct ? | 16 Yes | 3 No |
Answer / nikunj
For increase speed of select query, there are some factor
like...
-By using Limit in query
-By using Index on table
-By using Primary key
| Is This Answer Correct ? | 17 Yes | 5 No |
Answer / senthilkumar
1.Select <fieldname> from tablename.
2.Limit Setting.
3.Index Using
4.Primary key..
| Is This Answer Correct ? | 13 Yes | 1 No |
Answer / david
You can optimize sql queries using dbForge Studio for MySQL:
1. Open a query file -> click the Query Profiling Mode button on the SQL toolbar -> the Query Profiler tool.
2. Execute the query by clicking the Execute button or F5. The Profiler document view opens. See the query profiling results displayed on three tabs - Profile, Plan and Status.
3. After you have made changes in the query, click the Get New Results button in the Profiler document view. New profiling results appear in the tree view as a new node with time and date of query execution. You can easily distinguish and navigate to them.
| Is This Answer Correct ? | 0 Yes | 0 No |
How does php work?
What is a php certification?
Why die is used in php?
Explain Booleans in PHP?
Tell me how can we define a variable accessible in functions of a php script?
Which is used to maintain the value of a variable over different pages?
Explain the difference between session and cookies in php?
What beforeFilter() is used?
how to upload more than 50 mb? i tried but session was expired....certain time .....i was set session duration three days .... how to rectified? if any one know that post ur answer as soon as possible? thanks
What is php and what does it do?
Explain me what is sql injection?
Does empty check for null?