Preamble
PostgreSQL UNION ALL statement is used to combine the resulting sets of 2 or more SELECT operators. It returns all rows from a query and does not delete repeating rows between different SELECT statements.
Each SELECT statement in a PostgreSQL UNION ALL operator must have the same number of fields in the result sets with the same data types.
The syntax for a UNION ALL statement in PostgreSQL
SELECT expression1_id, expression2_id,... expression_n_id
FROM tabs
[WHERE conds]
UNION ALL
SELECT expression1_id, expression2_id,... expression_n_id
FROM tabs
[WHERE conds];
Parameters and arguments of the statement
- expression1_id, expression2_id,…_n_id – the column or calculation that you want to get.
- tabs – The tables from which you want to get the records. The FROM operator must specify at least one table.
- WHERE conds – Optional. The conditions to be met for the records to be selected.
Note:
- Both SELECT operators must have the same number of expressions.
- The column names from the first SELECT statement are used as column names for the result set.
Example with the return of a single field
Below is an example of PostgreSQL operator UNION ALL, which returns one field from several SELECT operators (and both fields have the same data type):
SELECT category_id
FROM products
UNION ALL
SELECT category_id
FROM categories;
This PostgreSQL UNION ALL operator will return category_id multiple times in your result set if category_id is present in the categories and product tables. PostgreSQL UNION ALL does not remove duplicates. If you want to remove duplicates, try using the PostgreSQL UNION statement.
Example using ORDER BY
PostgreSQL operator UNION ALL can use ORDER BY operator to organize results.
For example:
SELECT product_id, product_name
FROM products
WHERE product_name LIKE 'S%'
UNION
SELECT category_id, category_name
FROM categories
WHERE category_id < 99
ORDER BY 2;
In this example, since the column names of the two SELECT operators are different, it is more advantageous to refer to the columns in ORDER BY by their position in the resulting set. In this example, we have sorted the results by product_name / category_name in ascending order as ORDER BY 2.
The product_name / category_name fields are at position #2 in the resulting set.
SQL Union and Union All – SQL Training Online
About Enteros
IT organizations routinely spend days and weeks troubleshooting production database performance issues across multitudes of critical business systems. Fast and reliable resolution of database performance problems by Enteros enables businesses to generate and save millions of direct revenue, minimize waste of employees’ productivity, reduce the number of licenses, servers, and cloud resources and maximize the productivity of the application, database, and IT operations teams.
The views expressed on this blog are those of the author and do not necessarily reflect the opinions of Enteros Inc. This blog may contain links to the content of third-party sites. By providing such links, Enteros Inc. does not adopt, guarantee, approve, or endorse the information, views, or products available on such sites.
Are you interested in writing for Enteros’ Blog? Please send us a pitch!
RELATED POSTS
Cost Transparency for Finance: How Enteros Database Software Powers Cost Attribution and RevOps Efficiency
- 16 March 2026
- Database Performance Management
Introduction Financial institutions today operate in a highly data-driven and technology-intensive environment. From digital banking platforms and trading systems to fraud detection engines and regulatory reporting tools, modern financial operations depend on complex data infrastructures that process enormous volumes of transactions every second. As financial organizations continue to modernize their technology stacks—moving to cloud environments, … Continue reading “Cost Transparency for Finance: How Enteros Database Software Powers Cost Attribution and RevOps Efficiency”
Cloud FinOps for Banking: How Enteros Database Management Platform Enables Intelligent Cost and Performance Control
Introduction The banking industry is experiencing one of the most significant technological transformations in its history. Digital banking platforms, real-time payments, mobile applications, open banking APIs, fraud detection systems, and AI-driven financial services are reshaping how financial institutions operate and deliver value to customers. Behind these digital services lies a complex technology infrastructure powered by … Continue reading “Cloud FinOps for Banking: How Enteros Database Management Platform Enables Intelligent Cost and Performance Control”
Intelligent Healthcare IT: How Enteros AI SQL and Database Management Enable Growth Performance
- 15 March 2026
- Database Performance Management
Introduction The healthcare industry is undergoing a profound digital transformation. Hospitals, healthcare networks, research institutions, pharmaceutical companies, and digital health platforms are rapidly adopting technology to improve patient care, operational efficiency, and clinical outcomes. Electronic health records (EHR), telemedicine systems, medical imaging platforms, clinical analytics tools, and healthcare data exchanges are now essential components of … Continue reading “Intelligent Healthcare IT: How Enteros AI SQL and Database Management Enable Growth Performance”
How Fashion Brands Optimize Digital Growth with Enteros AI SQL and Database Performance Intelligence
Introduction The fashion industry has evolved dramatically over the past decade. What was once a primarily design-driven and retail-focused sector has become a technology-powered global ecosystem fueled by digital commerce, real-time analytics, omnichannel retail platforms, and data-driven customer experiences. Fashion brands now operate across e-commerce platforms, mobile applications, supply chain systems, CRM tools, marketing automation … Continue reading “How Fashion Brands Optimize Digital Growth with Enteros AI SQL and Database Performance Intelligence”