From: | Charlie <scorpdaddy(at)hotmail(dot)com> |
---|---|
To: | Claudio Adriano Guarracino <elninon(at)yahoo(dot)com>, pgsql-sql(at)postgresql(dot)org |
Subject: | Re: [SQL] Select and merge rows? |
Date: | 2011-05-05 21:41:04 |
Message-ID: | BLU0-SMTP166C4D81254A2CC17BC628ACE800@phx.gbl |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-sql |
While there is insufficient information provided (a couple of table snippets), you may consider and experiment with the snippet below to get you started.
SELECT
ids.id,
f1.value AS value1,
f2.value AS value2,
f3.value AS value3
FROM
( SELECT DISTINCT id FROM foo ) AS ids
LEFT JOIN foo f1
ON f1.id = ids.id
AND f1.order = 1
LEFT JOIN foo f2
ON f2.id = ids.id
AND f2.order = 2
LEFT JOIN foo f3
ON f3.id = ids.id
AND f3.order = 3
ORDER BY ids.id;
----- Reply message -----
From: "Claudio Adriano Guarracino" <elninon(at)yahoo(dot)com>
Date: Thu, May 5, 2011 5:18 pm
Subject: [SQL] Select and merge rows?
To: <pgsql-sql(at)postgresql(dot)org>
Hello!
I have a doubt about a query that I tried to do, but I cant......
This is the scenario:
I have a table, with this rows:
order ID value
----------------------
1 1000 3
2 1000 5
3 1000 6
1 1001 1
2 1001 2
1 1002 4
2 1002 4
I need to get this table, divided by ID, like this:
id value1 value2 value3
--------------------------------
1000 3 5 6
1001 1 2
1002 1 2
How I can do this?
I tried with cursors and view, but i can't....
Any help is welcome!
Thanks in advance!
Regards,
From | Date | Subject | |
---|---|---|---|
Next Message | Seb | 2011-05-05 22:01:20 | slightly OT - Using psql from Emacs with sql.el |
Previous Message | Claudio Adriano Guarracino | 2011-05-05 20:53:02 | Select and merge rows? |