Given this faux query.
SELECT * FROM homes WHERE street='foo' and addNo > 10 ;
Could I speed query up by adding an index the entire "homes" table or (not inclusive) adding indexes to both street and addNo?
Given this faux query.
SELECT * FROM homes WHERE street='foo' and addNo > 10 ;
Could I speed query up by adding an index the entire "homes" table or (not inclusive) adding indexes to both street and addNo?