angwrob Posted February 12, 2008 Report Share Posted February 12, 2008 Hallo, wer mag, hier ein Schnippsel für phpMyAdmin, der aus der Datenbank die Verkäufe so rausholt, dass man sie nachher gut mit einer Tabellen-Kalkulation weiterbearbeiten kann, und Erlöse berechnen kann. Natürlich ohne Gewähr und auf eigenes Risiko! SELECT o.orders_id, o.customers_name, o.payment_method, o.date_purchased, o.last_modified, s.orders_status_name, sum( if( ot.class = 'ot_total', ot.value, 0 ) ) AS total, sum( if( ot.class = 'ot_tax', ot.value, 0 ) ) AS tax FROM orders o LEFT JOIN orders_total ot ON ( o.orders_id = ot.orders_id ) , orders_status s WHERE o.orders_status = s.orders_status_id AND ( ot.class = 'ot_total' OR ot.class = 'ot_tax' ) GROUP BY o.orders_id ORDER BY o.orders_id ASC Wer mehrere Sprachen hat, kann noch z.B. "AND s.language_id =2" in die Abfrage einfügen. Evtl. kann man auch nach o.orders_status filtern, aber das mache ich dann lieber in der Tabellenkalkulation. Vielleicht hilft's ja jemandem! :-) Viele Grüße, Angela Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.