SQL aliases are used to give a table, or a column in a table, a temporary name. Aliases are often used to make column names more readable. An alias only exists for the duration of that query. An alias ...
--A column alias allows you to assign a column or an expression in the select list of a SELECT statement a temporary name. --The column alias exists temporarily during the execution of the query.