Yogesh Chauhan's Blog

Column and Table Alias in Postgres

in Postgres on December 11, 2020

Whenever we want to give a temporary name to a table or a column, we can use alias and they are really helpful in many cases.

Column Alias

Syntax:


column_name AS alias_name //AS keyword is optional.

That’s it.

We don’t really need alias if we just want simple columns to be shown in the results. We only need in some cases like what if we concat two columns data? Then what will be the name for the result column?

For example, 


SELECT address || ', ' || city || ', ' || postal_code FROM customers;

//Output

?column?
"Obere Str. 57, Berlin, 12209"
"Avda. de la Constitución 2222, México D.F., 05021"
"Mataderos  2312, México D.F., 05023"
"120 Hanover Sq., London, WA1 1DP"
....
....
....

So, as we can  see in the query above, Postgres is confused to decide the column name as there are multiple columns in results concatenated.

So, to remove the confusion and to represent the data that makes sense we can just add column alias ‘Address’.

Lets look at the query results:


SELECT address || ', ' || city || ', ' || postal_code AS Address
FROM customers;

//Output

address
"Obere Str. 57, Berlin, 12209"
"Avda. de la Constitución 2222, México D.F., 05021"
"Mataderos  2312, México D.F., 05023"
....
....
....

As we can see in the query results above, now the column has a meaningful name.

Table Alias

Similar Syntax as column alias:


table_name AS alias_name //AS keyword is optional.

That’s it.

You’ve seen many times, the use of tables alias, especially in joins.

For example,


SELECT a.column, b.column FROM table a JOIN table b WHERE a.column = b.column;

Those are table alias.


Most Read

#1 Solution to the error “Visual Studio Code can’t be opened because Apple cannot check it for malicious software” #2 How to add Read More Read Less Button using JavaScript? #3 How to check if radio button is checked or not using JavaScript? #4 Solution to “TypeError: ‘x’ is not iterable” in Angular 9 #5 PHP Login System using PDO Part 1: Create User Registration Page #6 How to uninstall Cocoapods from the Mac OS?

Recently Posted

#Apr 8 JSON.stringify() in JavaScript #Apr 7 Middleware in NextJS #Jan 17 4 advanced ways to search Colleague #Jan 16 Colleague UI Basics: The Search Area #Jan 16 Colleague UI Basics: The Context Area #Jan 16 Colleague UI Basics: Accessing the user interface
You might also like these
Angular 9 time clock update every minute, second, hourAngularWhat is Conditional Rendering in React?ReactArray destructuring and Object destructuring in JavaScriptJavaScriptHow to change CSS with jQuery?CSSHow to create a new HTML element programmatically using JavaScript?HTMLCan Firewall and IDPS Stop DDoS Attack?Miscellaneous