Does the order of your select statement make the report load faster?
In example, lets say I am trying to select where ID = 5 and Name = CD.
I have 10,000 recs with ID of 5 and out of those 100 have a name of CD.
would (Name = CD and ID = 5) load faster than (ID = 5 and Name = CD), or it doesnt matter at all?
thanks
In example, lets say I am trying to select where ID = 5 and Name = CD.
I have 10,000 recs with ID of 5 and out of those 100 have a name of CD.
would (Name = CD and ID = 5) load faster than (ID = 5 and Name = CD), or it doesnt matter at all?
thanks