When I was starting out I always just did SELECT * because I was afraid that if I messed around with the code in any way that I would cause an error...
Months later I realized that my website is full of SELECT *'s when a lot of the time I only need to select one column.
Will it make a noticeable difference in page load time if I reduce all the "SELECT *" to "SELECT column"?
I assume that it makes it faster, but I have no idea if it would be noticeable.
Thanks!