How to make only ONE Sql query?

How to make database sql query run faster?

  • Answer:

    Normalize the database by splitting them into smaller tables.

urrajesh... at Yahoo! Answers Visit the source

Was this solution helpful to you?

Other answers

1>split into different tables 2>make index 3>use stored procedure and trigger on the database

mitoshi

Most databases will have some type of EXPLAIN PLAN function. This function will run your SQL and map out the steps the SQL takes to read each table in the query and identify how each is parsed (full scan, indexed scan etc) and what order they are read. This let's you improve the performance of the SQL by identifying a better way to write your SQL (different table order, different join criteria) or improvements to the table indexing. You can also get third party products that analyse and improve SQL. Have a look at Quest Software as an example.

vmac

First you must have the system speed higher and then your server executing the sql commands must be loaded with less traffic. Second eventually your database must be split in many tables using smaller no. of tables at a time. :)

aru.mugam

lots of ways !!! ..index relevant columns ..refresh indexes, if out of date ..re-look at your query depends on what is ur database and on the funny side... remove some data...that will definitely speed up queries.. no data shud give u the fastest ..

bio_guy

Related Q & A:

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.