Preamble
PostgreSQL UNION statement is used to combine the resulting sets of 2 or more SELECT operators. It removes repetitive lines between different SELECT operators.
Each SELECT statement in a UNION operator must have the same number of fields in the result sets with the same data types.
The syntax for a UNION statement in PostgreSQL
SELECT expression1_id, expression2_id,... expression_n_id
FROM tabs
[WHERE conds]
UNION
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 the calculation 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 statements must have the same number of expressions.
- Since the UNION operator by default removes all repetitive strings from the result set, providing a UNION DISTINCT modifier does not affect the results.
- The column names from the first SELECT operator in UNION are used as column names for the result set.
Example with the return of a single field
Below is an example of PostgreSQL UNION operator, which returns one field from several SELECT operators (and both fields have the same data type):
SELECT category_id
FROM products
UNION
SELECT category_id
FROM categories;
In this example of the PostgreSQL UNION operator, if a category_id appears in both the products table and the categories table, it will appear in your resulting set once. The PostgreSQL UNION statement removes duplicates. If you do not want to remove duplicates, try using PostgreSQL UNION ALL operator.
Example using the ORDER BY statement
PostgreSQL UNION operator can use ORDER BY operator to organize query results.
For example:
SELECT product_id, product_name
FROM products
WHERE product_id >= 24
UNION
SELECT category_id, category_name
FROM categories
WHERE category_name <> 'Hardware'
ORDER BY 2;
In this PostgreSQL operator UNION, since column names in two SELECT operators are different, it is more advantageous to refer to columns in ORDER BY operator 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. is used to combine the resulting sets of 2 or more SELECT operators. It removes repetitive lines between different SELECT operators.
Each SELECT statement in a UNION operator must have the same number of fields in the result sets with the same data types.
PostgreSQL Tutorial – UNION and UNION ALL
About Enteros
Enteros offers a patented database performance management SaaS platform. It proactively identifies root causes of complex business-impacting database scalability and performance issues across a growing number of clouds, RDBMS, NoSQL, and machine learning database platforms.
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
From Transactions to Experience: How Enteros Redefines Database Performance Management in Retail
- 31 December 2025
- Database Performance Management
Introduction Retail has evolved far beyond simple transactions. Today’s retail enterprises compete on experience, speed, personalization, and reliability—across digital storefronts, mobile apps, in-store systems, loyalty platforms, and real-time supply chains. Behind every seamless customer interaction lies a complex database ecosystem powering: eCommerce platforms Read more”Indian Country” highlights Enteros and its database performance management platform *Mobile … Continue reading “From Transactions to Experience: How Enteros Redefines Database Performance Management in Retail”
The New Economics of Performance: How Enteros Drives Sustainable Growth in Technology and Financial Sectors
Introduction Performance has always mattered in technology and financial enterprises—but today, performance has taken on a new economic meaning. Modern technology companies and financial institutions operate in environments defined by real-time transactions, cloud-native architectures, AI-driven services, regulatory pressure, and relentless customer expectations. Databases sit at the heart of these ecosystems, powering digital products, trading platforms, … Continue reading “The New Economics of Performance: How Enteros Drives Sustainable Growth in Technology and Financial Sectors”
From Cost Control to Care Growth: How Enteros Transforms Healthcare RevOps with Cloud FinOps and AIOps
- 30 December 2025
- Database Performance Management
Introduction Healthcare organizations are under unprecedented pressure. Providers, payers, and digital health companies must simultaneously improve patient outcomes, expand access to care, meet regulatory requirements, and maintain financial sustainability—all while operating in an environment of rising technology costs and shrinking margins. Modern healthcare delivery is deeply digital. Electronic Health Records (EHRs), clinical systems, revenue cycle … Continue reading “From Cost Control to Care Growth: How Enteros Transforms Healthcare RevOps with Cloud FinOps and AIOps”
Modern Retail IT Economics: How Enteros Powers RevOps Efficiency with GenAI-Driven Performance and FinOps Intelligence
Introduction Retail has entered a new era—one where data, speed, and intelligence determine revenue performance. Modern retail enterprises operate across complex omnichannel ecosystems that include eCommerce platforms, mobile apps, in-store POS systems, supply-chain applications, loyalty platforms, marketing automation tools, and real-time analytics engines. Behind every customer interaction lies a dense technology foundation built on databases, … Continue reading “Modern Retail IT Economics: How Enteros Powers RevOps Efficiency with GenAI-Driven Performance and FinOps Intelligence”