phpbar.de logo

Mailinglisten-Archive

AW: [php] mySQL oder PHP+mySQL (Nachtrag)

AW: [php] mySQL oder PHP+mySQL (Nachtrag)

Andre Steffens php_(at)_phpcenter.de
Mon, 12 Nov 2001 18:11:20 +0100


kleiner Nachtrag... (hab's auch mal in die mySQL Liste gestellt)

Unter (1) und (2) befinden sich die beiden Abfragen welche ich gerne durch
eine einzelne Abfrage durchführen möchte !!!

(1)
select xtab.id,xtab.datum,sum(tab2.anz),sum(tab2.betrag) from tab1
left join tab2 on tab1.id=tab2.ref_id
left join xtab on tab2.xtab_id=xtab.id
where tab1.id=5

Ergebnis:
xtab.id   xtab.datum   tab2.anz   tab2.betrag
1         2001-11-12   20         135.23
2         2001-10-28   26         157.40

(2)
select tab3.id,tab3.datum,tab3.betrag from tab1
left join tab3 on tab1.id=tab3.ref_id
where tab1.id=5

Ergebnis:
tab3.id   tab3.datum   tab3.betrag
2         2001-11-07   300.00
4         2001-11-05   250.00


Gewünschtes Ergebnis durch nur EINE Abfrage
tab   datum        anz        betrag
xtab  2001-11-12   20         135.23
xtab  2001-10-28   26         157.40
tab3  2001-11-07              300.00
tab3  2001-11-05              250.00

Gruß
Andre



php::bar PHP Wiki   -   Listenarchive