I have the following query:
SELECT type,name,points FROM clients WHERE type='1' ORDER BY name
I've created an index for the "clients" table just above the "type" field.
Will adding an ORDER BY over an unindexed field affect query response time?