|
2 |
edited tags
|
||
|
1 |
|
||
Optmizing MySQL GROUP BY or DISTINCT on large viewsConsider a view consisting of several tables... for example a
Each component of the car has an "active" flag.
Now, I need to find all the stereos that are available in active cars.
To do this in need to use the whole view, not just the So I can do
Even though this may return a very small number of rows, it's stil a very slow query. I've tried this, but it's even slower:
Is there anything else I could do to make this faster?
|
||||
