Help with a query, please - Mailing list pgsql-novice

From Timo Tuomi
Subject Help with a query, please
Date
Msg-id Pine.LNX.4.21.0103172317001.958-100000@localhost.localdomain
Whole thread Raw
Responses Re: Help with a query, please
List pgsql-novice
testdb=>
testdb=> select * from test1;

c|i
-+-
A|2
B|3
C|4
(3 rows)

testdb=> select * from test2;

c|i
-+-
A|6
C|7
(2 rows)

testdb=>

I'd like to get (test1.i + test2.i) like this:

c|sum
-+---
A|8
B|3
C|11


i.e. to sum the rows but if one of the rows doesn't exist on one of the
tables then print just the existing row. How can I do this?

Thanks in advance,
Timo T.



pgsql-novice by date:

Previous
From: Lars Forseth
Date:
Subject: Postgres - trouble starting the database on a suse 7.0 box - data dir not found
Next
From: "Oliver Elphick"
Date:
Subject: Re: Help with a query, please