select * from Table1
where Condition 1
union
select select * from Table1
where Condition 2
RESULTS:
NAME AMOUNT TYPE
ABC -- Account
ABC 200 --
but i need the results in one row like
NAME AMOUNT TYPE
ABC 200 ACCOUNT
How to do in PG?