AS Keyword
The AS command can be used to rename columns. An alias only exists for the duration of the query.
SELECT column_name AS alias_name FROM table_name
The AS command can be used to rename columns. An alias only exists for the duration of the query.
SELECT column_name AS alias_name FROM table_name