in reply to Re: How to count rows using DBI & mysql - Performance results
in thread How to count rows using DBI & mysql - Performance results
An index on the columns in where clause might have a huge impact if you use count(*).
I believe that MySQL creates an index on the leftmost subset of columns anyway, due to the way it stores the data. It should be intelligent enough to only compare the second row if the first row succeeds. In the test case, only there are only 4 rows, so testing the remainder of the AND should be quick.
Have just tested the suggestion. In fact, not having indexes doesn't seem to make any difference (1230/sec vs. 1174/sec),
so I think I am correct that there is an index by default on the leftmost column.
--
Brovnik
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: How to count rows using DBI & mysql - Performance results
by busunsl (Vicar) on Jun 11, 2001 at 18:09 UTC | |
by elwarren (Priest) on Jun 11, 2001 at 22:45 UTC |