How can we give a SQL result column a clearer name?
The AS keyword renames output columns in the query result without changing the underlying table schema.
Improving report readability, standardizing naming conventions, disambiguating identical column names.
SELECT
name AS employee_name,
salary AS annual_salary
FROM employees;Practice typing production-grade SQL code for Column Aliases.