What's the difference in speed and memory between doing:
and:Code:SELECT * FROM tblNames WHERE something='value'
Is the second method any faster? I suppose it saves up on memory because it isn't returning as much stuff as the first example.Code:SELECT phoneNumber FROM tblNames WHERE something='value'
Is it more efficient to go with the second one?




Reply With Quote