SELECT text 'a' AS "text" UNION SELECT 'b' : UNION « Select Query « PostgreSQL






SELECT text 'a' AS "text" UNION SELECT 'b'

postgres=# SELECT text 'a' AS "text" UNION SELECT 'b';
 text
------
 a
 b
(2 rows)

postgres=#

           
       








Related examples in the same category

1.Using UNION for two data sets
2.Type Resolution in a Transposed Union