SELECT `accounts`.`password` FROM accounts WHERE `accounts`.`user`='some_user'
SELECT password FROM accounts WHERE user='some_user'
I am a bit confused about the two. I know as far as the results, there is not a thing different between the two. However is there some reason to do one way as opposed to the other? I learned it the second way but have had some people tell me the first way is the 'official' way to do this.