I have a table that is --
30 Megabytes
90,000 rows
~65 columns
My query goes
SELECT city FROM table WHERE zip = 90210;
It will then find about 10 matching records.
I have an index on both zip and city.
This query takes on average anywhere from 0.80 seconds to 2.5 seconds.
Is this normal speed? I've been breaking my back trying to get it in
the sub 0.1 second range.
Thanks!
-Matt
30 Megabytes
90,000 rows
~65 columns
My query goes
SELECT city FROM table WHERE zip = 90210;
It will then find about 10 matching records.
I have an index on both zip and city.
This query takes on average anywhere from 0.80 seconds to 2.5 seconds.
Is this normal speed? I've been breaking my back trying to get it in
the sub 0.1 second range.
Thanks!
-Matt
Comment