Displaying two tables side by side

From: David Garamond <lists(at)zara(dot)6(dot)isreserved(dot)com>
To: pgsql-sql(at)postgresql(dot)org
Subject: Displaying two tables side by side
Date: 2004-08-11 14:11:50
Message-ID: 411A2926.9020500@zara.6.isreserved.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

How can you display two tables side by side? Example:

> select * from t1;
a | b
---+---
2 | 2
3 | 5
4 | 7
9 | 0

> select * from t2;
c | d
---+---
4 | 5
7 | 3
3 | 2
1 | 1
2 | 0

Intended output:
a | b | c | d
---+---+---+---
2 | 2 | 4 | 5
3 | 5 | 7 | 3
4 | 7 | 3 | 2
9 | 0 | 1 | 1
| | 2 | 0

Each table has no keys (and no OIDs). Order is not important, but each
row from each table needs to be displayed exactly once.

--
dave

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Sascha Ziemann 2004-08-11 14:29:28 COMMENT ON CONSTRAINT
Previous Message Richard Huxton 2004-08-11 13:34:15 Re: Inserts with incomplete rows... NOT NULL constraints