understanding sql query

sql

Solution

Yes, it's just an alias. AS is optional I believe.

Problem

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 ```

Original source