Moin,
sorry, mal wieder eine Anfängerfrage:
ich habe zwei Tabellen:
Tabelle 1
Tabelle 2Code:ID | c1 | c2 | 2 xx yy 3 xy yz 4 yd yf
und daraus soll entstehen:Code:IDo | titel | content 2 t1 ct12 2 t2 ct22 2 t3 ct32 3 t1 ct13 3 t3 ct33 4 t2 ct24 4 t3 ct34
Das sind benutzerdefinierte Felder (Tabelle 2) zu Tabelle 1, die in der DB auf diese Weise abgelegt werden. Jedes Feld bezieht sich auf die ID des Datensatzes in der ersten Tabelle.Code:ID | c1 | c2 | t1 | t2 | t3 2 xx yy ct12 ct22 ct32 3 xy yz ct13 ct33 4 yd yf ct24 ct34
Wäre toll wenn ihr mir mit einem Hinweis helfen könntet.
Viele Grüße
Christian
1. eine DB != eine Tabellenkalkulation
2.
Ich hoffe, Du durchschaust das Prinzip ;-)Code:test=# select * from t1; id | c1 | c2 ----+----+---- 2 | xx | yy 3 | xy | yz 4 | yd | yf (3 Zeilen) Zeit: 0,149 ms test=*# select * from t2; ido | titel | content -----+-------+--------- 2 | t1 | ct12 2 | t2 | ct22 2 | t3 | ct32 3 | t1 | ct13 3 | t3 | ct33 4 | t2 | ct24 4 | t3 | ct34 (7 Zeilen) Zeit: 0,218 ms test=*# select t1.*, array_to_string(array_agg(case when t2.titel = 't1' then t2.content else null end),',') as t1, array_to_string(array_agg(case when t2.titel='t2' then t2.content else null end),',') as t2, array_to_string(array_agg(case when t2.titel = 't3' then t2.content else null end),',') as t3 from t1 left join t2 on t1.id=t2.ido group by 1,2,3; id | c1 | c2 | t1 | t2 | t3 ----+----+----+------+------+------ 2 | xx | yy | ct12 | ct22 | ct32 3 | xy | yz | ct13 | | ct33 4 | yd | yf | | ct24 | ct34 (3 Zeilen)
Andreas
--
https://www.xing.com/profile/Andreas_Kretschmer7ads Das hatte dir akretschmer gestern schon gesagt und siehe da sobald du das machst, funktioniert es ;-)
Links: Tobias Bauer - IT- und Funkdienstleistungen - Bilderrahmen-kaufen.de - Der Onlineshop für Bilderrahmen & Fotorahmen - Funkforum
Lesezeichen