SQL - Aliases



You can rename a table or a column in a database temporarily by giving them another pseudo name. This pseudo name is known as Alias. The use of aliases is to address a specific table or a column in an SQL statement without changing their original name in the database. Aliases are created with the AS keyword.

Aliases can be especially useful when working with complex queries involving multiple tables or columns with similar names. By assigning temporary names to these tables or columns, you can make your SQL query more readable and easier to understand.

The SQL Aliasing

Aliases are used to address database tables or a column with a shorter or more meaningful name within an SQL query.

  • Column Alias: Renames a column in the result set using the AS keyword. Example: SELECT first_name AS Name FROM employees;
  • Table Alias: Provides a temporary name for a table, often used in joins to simplify references. Example: SELECT e.first_name FROM employees AS e;

Aliases are temporary and only exist for the duration of the query. They do not change the actual table or column names in the database.

Syntax

The basic syntax of a table alias is as follows:

SELECT column1, column2....
FROM table_name AS alias_name;

Example

Assume we have created a table with name CUSTOMERS in MySQL database using CREATE TABLE statement as shown below:

CREATE TABLE CUSTOMERS (
   ID INT NOT NULL,
   NAME VARCHAR (20) NOT NULL,
   AGE INT NOT NULL,
   ADDRESS CHAR (25),
   SALARY DECIMAL (18, 2),       
   PRIMARY KEY (ID)
);

Following query inserts values into this table using the INSERT statement:

INSERT INTO CUSTOMERS VALUES
(1, 'Ramesh', 32, 'Ahmedabad', 2000.00),
(2, 'Khilan', 25, 'Delhi', 1500.00),
(3, 'Kaushik', 23, 'Kota', 2000.00),
(4, 'Chaitali', 25, 'Mumbai', 6500.00),
(5, 'Hardik', 27, 'Bhopal', 8500.00),
(6, 'Komal', 22, 'Hyderabad', 4500.00),
(7, 'Muffy', 24, 'Indore', 10000.00);

The CUSTOMERS table obtained is as follows:

ID NAME AGE ADDRESS SALARY
1 Ramesh 32 Ahmedabad 2000.00
2 Khilan 25 Delhi 1500.00
3 Kaushik 23 Kota 2000.00
4 Chaitali 25 Mumbai 6500.00
5 Hardik 27 Bhopal 8500.00
6 Komal 22 Hyderabad 4500.00
7 Muffy 24 Indore 10000.00

Now, we are creating the second table ORDERS using CREATE TABLE statement as shown below:

CREATE TABLE ORDERS (
   OID INT NOT NULL,
   DATES DATETIME NOT NULL,
   CUSTOMER_ID INT NOT NULL,
   AMOUNT INT NOT NULL,      
   PRIMARY KEY (OID)
);

Following query inserts values into this table using the INSERT statement:

INSERT INTO ORDERS VALUES
(102, '2009-10-08 00:00:00', 3, 3000),
(100, '2009-10-08 00:00:00', 3, 1500),
(101, '2009-11-20 00:00:00', 2, 1560),
(103, '2008-05-20 00:00:00', 4, 2060);

The ORDERS table obtained is as shown below:

OID DATE CUSTOMER_ID AMOUNT
102 2009-10-08 00:00:00 3 3000.00
100 2009-10-08 00:00:00 3 1500.00
101 2009-11-20 00:00:00 2 1560.00
103 2008-05-20 00:00:00 4 2060.00

Now, the following query shows the usage of a table alias. The CUSTOMERS table is aliased as 'C' and the ORDERS table is aliased as 'O':

SELECT C.ID, C.NAME, C.AGE, O.AMOUNT 
FROM CUSTOMERS AS C, ORDERS AS O
WHERE  C.ID = O.CUSTOMER_ID;

This would produce the following result:

ID NAME AGE AMOUNT
3 Kaushik 23 3000.00
3 Kaushik 23 1500.00
2 Khilan 25 1560.00
4 Chaitali 25 2060.00

Aliasing Column Names

We can also use an alias for a column name in SQL to give it a different name in the result set of a query. The basic syntax of a column alias is as follows:

SELECT column_name AS alias_name
FROM table_name;

Example

Following is the usage of a column alias. Here, the NAME column is aliased as 'CUSTOMER_NAME':

SELECT ID AS CUSTOMER_ID, NAME AS CUSTOMER_NAME
FROM CUSTOMERS;

This would produce the following result:

CUSTOMER_ID CUSTOMER_NAME
1 Ramesh
2 Khilan
3 Kaushik
4 Chaitali
5 Hardik
6 Komal
7 Muffy

Table Aliasing

Table aliasing in SQL assigns a temporary name to a table within a query. It is applied when working with long table names or multiple tables in joins, allowing the query to remain shorter and easier to read.

Syntax

Following is the syntax for aliasing a table in SQL:

SELECT t.column_name
FROM table_name t;

Example

This query lists customer names and their order amounts by matching customers with their orders using table aliases:

SELECT C.NAME, O.AMOUNT
FROM CUSTOMERS C, ORDERS O
WHERE C.ID = O.CUSTOMER_ID;

Following is the output of the above code:

NAME AMOUNT
Kaushik 1500.00
Khilan 1560.00
Kaushik 3000.00
Chaitali 2060.00

Combining Column Aliasing and Table Aliasing

In SQL, column aliasing and table aliasing can be used together within a query. Table aliases shorten table names in complex queries, while column aliases assign meaningful names to calculated or concatenated columns.

This approach is used when you want to join multiple tables or present results with specific column headings.

Example

This query retrieves each customer's ID, name, and order amount, renames the columns in the result set, and uses table aliases to join the CUSTOMERS and ORDERS tables where their IDs match:

SELECT 
    C.ID AS CUSTOMER_ID, 
    C.NAME AS CUSTOMER_NAME, 
    O.AMOUNT AS ORDER_AMOUNT
FROM CUSTOMERS C, ORDERS O
WHERE C.ID = O.CUSTOMER_ID;

Following is the output obtained:

CUSTOMER_ID CUSTOMER_NAME ORDER_AMOUNT
3 Kaushik 3000.00
3 Kaushik 1500.00
2 Khilan 1560.00
4 Chaitali 2060.00

Aliasing with Self Join

The SQL Self Join is used to join a table to itself as if the table were two tables. During this process, we need to use alias for one of the tables with a temporary name to avoid misunderstandings. This renaming is done using aliases.

Following is the syntax for performing a self-join with aliases:

SELECT column_name(s)
FROM my_table a, my_table b
ON a.join_column = b.join_column;

Example

Now, let us join the CUSTOMERS table to itself using the following Self Join query. Our aim is to establish a relationship among customers on the basis of their earnings. In here, we are using aliases with column names as well as with the table names:

SELECT 
   a.ID, b.NAME as EARNS_HIGHER, 
   a.NAME as EARNS_LESS, 
   a.SALARY as LOWER_SALARY
FROM CUSTOMERS a, CUSTOMERS b
WHERE a.SALARY < b.SALARY;

Output of the above query is as follows:

ID EARNS_HIGHER EARNS_LESS LOWER_SALARY
2 Ramesh Khilan 1500.00
2 Kaushik Khilan 1500.00
6 Chaitali Komal 4500.00
3 Chaitali Kaushik 2000.00
2 Chaitali Khilan 1500.00
1 Chaitali Ramesh 2000.00
6 Hardik Komal 4500.00
4 Hardik Chaitali 6500.00
3 Hardik Kaushik 2000.00
2 Hardik Khilan 1500.00
1 Hardik Ramesh 2000.00
3 Komal Kaushik 2000.00
2 Komal Khilan 1500.00
1 Komal Ramesh 2000.00
6 Muffy Komal 4500.00
5 Muffy Hardik 8500.00
4 Muffy Chaitali 6500.00
3 Muffy Kaushik 2000.00
2 Muffy Khilan 1500.00
1 Muffy Ramesh 2000.00

Alias Without AS Keyword

In SQL, the AS keyword is commonly used to create an alias, but it is actually optional in most SQL databases. You can simply put the alias name after the column or table name separated by a space.

Syntax

Following is the syntax of using alias without the AS keyword:

SELECT column_name alias_name
FROM table_name;

Example

The following query renames the NAME column to CUSTOMER_NAME without using the AS keyword:

SELECT ID CUSTOMER_ID, NAME CUSTOMER_NAME
FROM CUSTOMERS;

Following is the output obtained:

CUSTOMER_ID CUSTOMER_NAME
1 Ramesh
2 Khilan
3 Kaushik
4 Chaitali
5 Hardik
6 Komal
7 Muffy

Aliasing with Space Characters in Names

When you want your alias name to contain spaces or special characters, you need to enclose the alias in double quotes (") or square brackets ([]), depending on your SQL database.

Syntax

Following is the syntax to use alias with space characters in names:

SELECT column_name AS "Alias With Spaces"
FROM table_name;

Example

This SQL query selects the NAME and SALARY columns from the CUSTOMERS table, renaming them in the result set as Customer Name and Monthly Income respectively:

SELECT NAME AS "Customer Name", SALARY AS "Monthly Income"
FROM CUSTOMERS;

Following is the table produced:

Customer Name Monthly Income
Ramesh 2000.00
Khilan 1500.00
Kaushik 2000.00
Chaitali 6500.00
Hardik 8500.00
Komal 4500.00
Muffy 10000.00

Aliasing When Concatenating Columns

Aliases are very useful when you combine two or more columns into a single output column using functions like CONCAT(). Without an alias, the column name might appear as an expression, which can be hard to read.

Example

Here we combine NAME and ADDRESS into one column called CUSTOMER_DETAILS:

SELECT CONCAT(NAME, ' - ', ADDRESS) AS CUSTOMER_DETAILS
FROM CUSTOMERS;

We get the output as shown below:

CUSTOMER_DETAILS
Ramesh - Ahmedabad
Khilan - Delhi
Kaushik - Kota
Chaitali - Mumbai
Hardik - Bhopal
Komal - Hyderabad
Muffy - Indore
Advertisements