Hi,
Does queries become slower when you type them like this:
SELECT concat(U.Firstname, ' ', U.Lastname) AS 'Full Name', L.Username FROM tbusers U, tblogin L WHERE U.ID = L.UserID AND L.iActive = 1
rather than typing them out fully like this:
SELECT concat(tbusers.Firstname, ' ', tbusers.Lastname) AS 'Full Name', tblogin.Username FROM tbusers JOIN tblogin on tbusers.ID = tblogin.UserID WHERE tblogin.iActive = 1
And why are there 2 ways to do the same query ?