A single item in a SELECT list
{ [ [ Schema . ] Table . ] * | expression [ AS Alias ] }
Specifies a single item in a select list.
The first form: Table.* adds all columns in the table to the select list.
The second form: expression [ AS Alias ] adds an expression with optional column alias to the select list.