Specifically, I would like to know what the trailing email at the end of the first line does. Is this essentially the same thing as SELECT columnname ‘AS’ email? But, just missing the ‘AS’?
select distinct initcap(email1) email
from fin_jobs
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Yes, it’s just an alias. AS is optional I believe.