Real quick question:
I see code like this:
.. which I, in my thrifty ways would write as:
So I ask why is the first form so prevalent (version compatibility aside)?
I've been told the first form is faster. Why would that be so ?
I see code like this:
Code:
SELECT 0
USE table1
SET ORDER TO id
.. which I, in my thrifty ways would write as:
Code:
USE table1 IN 0 ORDER id
So I ask why is the first form so prevalent (version compatibility aside)?
I've been told the first form is faster. Why would that be so ?