- SQL Basics
- SQL Introduction
- SQL Syntax
- SQL Sample Database
- SQL SELECT
- SQL WHERE
- SQL ORDER BY
- SQL DISTINCT
- SQL LIMIT
- SQL FETCH
- SQL AND
- SQL OR
- SQL BETWEEN
- SQL IN
- SQL LIKE
- SQL IS NULL
- SQL Comparison Operators
- SQL Logical Operators
- SQL Alias
- SQL CASE
- Joins and Subqueries
- SQL INNER JOIN
- SQL LEFT JOIN
- SQL RIGHT JOIN
- SQL FULL OUTER JOIN
- SQL SELF JOIN
- SQL CROSS JOIN
- SQL Subquery
- SQL Correlated Subquery
- SQL UNION
- SQL INTERSECT
- SQL EXCEPT
- Aggregate Functions
- SQL AVG
- SQL COUNT
- SQL MAX
- SQL MIN
- SQL SUM
- SQL GROUP BY
- SQL HAVING
- SQL ROLLUP
- SQL CUBE
- SQL GROUPING SETS
- Database Management
- SQL CREATE DATABASE
- SQL ALTER DATABASE
- SQL DROP DATABASE
- SQL BACKUP DATABASE
- SQL SHOW DATABASES
- SQL SELECT DATABASE
- Table Management
- SQL CREATE TABLE
- SQL ALTER TABLE
- SQL ADD COLUMN
- SQL DROP COLUMN
- SQL DROP TABLE
- SQL TRUNCATE TABLE
- SQL SHOW TABLES
- SQL RENAME TABLE
- SQL Constraints
- SQL Primary Key
- SQL Foreign Key
- SQL UNIQUE Constraint
- SQL CHECK Constraint
- SQL NOT NULL Constraint
SQL Alias
SQL alias is a temporary name used to rename a table or a column for the duration of a query. Aliases help make queries more readable and simplify column or table references, especially when using complex expressions or multiple joins.
Types of SQL Aliases
- Column Alias
- Table Alias
1. Column Alias
A column alias is used to rename a column for the duration of the query. The alias name is provided using the AS
keyword (although it is optional).
Syntax:
SELECT column_name AS alias_name
FROM table_name;
Example:
SELECT first_name AS "Employee Name", salary AS "Monthly Salary"
FROM employees;
- The
first_name
column is renamed toEmployee Name
, andsalary
is renamed toMonthly Salary
in the result set.
2. Table Alias
A table alias is used to assign a temporary name to a table, which is helpful when working with multiple tables in complex queries (like with JOIN operations). The alias is typically a short name to make the query easier to read.
Syntax:
SELECT column_name
FROM table_name AS alias_name;
Example:
SELECT e.first_name, e.salary
FROM employees AS e
WHERE e.salary > 3000;
- The
employees
table is given the aliase
, and this alias is used to reference the table columns.
Key Features of SQL Aliases
1. Column Alias Without AS
While the AS
keyword is optional, you can also create an alias without using it, as long as you separate the column name and alias with a space.
Example:
SELECT first_name "Employee Name", salary "Monthly Salary"
FROM employees;
- Both
first_name
andsalary
columns are aliased without usingAS
.
2. Table Alias Without AS
Similarly, you can use table aliases without the AS
keyword.
Example:
SELECT e.first_name, e.salary
FROM employees e
WHERE e.salary > 3000;
- The
employees
table is aliased ase
, without usingAS
.
SQL Alias in Joins
When using joins with multiple tables, aliases make the query easier to understand by avoiding the repetition of long table names.
Example:
SELECT e.first_name, e.salary, d.department_name
FROM employees AS e
JOIN departments AS d ON e.department_id = d.department_id;
- Here, the
employees
table is aliased ase
anddepartments
asd
, making the query concise.
SQL Alias in Aggregations
You can also use aliases in aggregate functions to make the result more meaningful.
Example:
SELECT department, COUNT(*) AS "Number of Employees"
FROM employees
GROUP BY department;
- The count result is aliased as
"Number of Employees"
.
Summary
SQL aliases help simplify queries and enhance readability by giving temporary names to columns and tables. Aliases are especially useful in queries with multiple tables or complex expressions, like JOINs
, and make it easier to reference specific columns. Aliases can be applied with or without the AS
keyword, though using it is recommended for clarity.