vote up 3 vote down star

Is creating an index for a column that is being summed is faster than no index?

flag

5 Answers

vote up 10 vote down check

Sorry, it is not clear what you are asking.

Are you asking, would it speed up a query such as

SELECT product, sum(quantity) FROM receipts 
GROUP BY product

if you added an index on quantity?

If that is the question, then the answer is no. Generally speaking, indexes are helpful when you need to find just a few rows among many; here you need all rows, so an index does not help.

There is an obscure exception (which applies so rarely most DB optimizers probably don't bother implementing this trick). If your query happens to be

SELECT sum(foo) FROM bar

, where there is an index on foo, and bar is a table with many columns, it is possible to read in the full index, incurring a smaller hit than if you read the underlying table, and get the answer directly from the index -- never having to touch the "real" table at all! This is a fairly rare case, however, and you will want to test that your optimizer knows to do this before relying on this too much.

link|flag
+1 because it's an interesting use of indexes. – Chris Lively Jan 13 '09 at 4:05
+1 Good advice: to view the execution plan produced by the optimizer. – David B Jan 13 '09 at 4:24
vote up 0 vote down

I found indexing a column in the where(productid here) helps when using this query:

SELECT productid, sum(quantity) FROM receipts WHERE productid = 1 GROUP BY productid

One of my queries went from 45 seconds to almost instant once I added the index.

link|flag
With a single product ID, do you need the product ID in the SELECT list? – Jonathan Leffler May 19 at 22:29
vote up 0 vote down

If the index is covering, it will generally be faster. How much faster will be determined by the difference between the number of columns in the table versus the number in the index. In addition, it might be faster if there are any filtering criteria.

link|flag
vote up 1 vote down

If you want to make the summation faster, you can pre-materialized the result. On Oracle, use Materialized Views, on MS SQL use Indexed Views.

On your specific question "Is creating an index for a column that is being summed is faster than no index?", answer is No.

The answer to your question lies on Spencer's answer:

"An aggregate function (count, max, min, sum, avg) has to run through all the entries in a columns being summed regardless."

Just clarified the context of columns in Spencer's answer. His answer is correct nonetheless.

link|flag
vote up 5 vote down

No. Indexes improve searches by limiting how many checks are required. An aggregate function (count, max, min, sum, avg) has to run through all the entries in a column regardless.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.