Leex Posted February 16, 2013 Report Share Posted February 16, 2013 Hey, kann mir jemand sagen mit welchem SQL Befehl ich folgende Daten auslesen kann (Bestelldaten): - Wohnort (PLZ) - Alter - Geschlecht - Anzahl Bestellungen Brauche die Daten für eine kleine Statistik. Finde aber die zusammehänge in der DB nicht. Link to comment Share on other sites More sharing options...
Alex@4tfm Posted February 16, 2013 Report Share Posted February 16, 2013 Siehe Tabelle xt_orders, da stehen alle Daten drin die du genannt hast Link to comment Share on other sites More sharing options...
Leex Posted February 16, 2013 Author Report Share Posted February 16, 2013 steht eben nicht alles drin. Alter und Anzahl der Bestellungen nicht! Link to comment Share on other sites More sharing options...
Leex Posted February 17, 2013 Author Report Share Posted February 17, 2013 stimmt dieser befehl um die Anzahl der Bestellungen eines Kunden zu bekommen??? select count(DISTINCT xt_orders.orders_id) from xt_orders, xt_customers where xt_orders.customers_id = "49" Link to comment Share on other sites More sharing options...
mzanier Posted February 17, 2013 Report Share Posted February 17, 2013 so geht das select count(*) as anzahl from xt_orders where customers_id = "49" Link to comment Share on other sites More sharing options...
Leex Posted February 17, 2013 Author Report Share Posted February 17, 2013 hm ok. und wie könnte ich mir jetzt von jedem Kunden die dazu gehörende bestellmenge anzeigen? customers_id--------anzahl ------x----------------y Link to comment Share on other sites More sharing options...
giller Posted February 17, 2013 Report Share Posted February 17, 2013 binde in dein script einfach die main.php vom shop ein und nutze dann die metohden der class.order.php buliddata lies dir das mal durch Link to comment Share on other sites More sharing options...
Leex Posted February 17, 2013 Author Report Share Posted February 17, 2013 gibts es keinen sql query mit dem ich mir das alles ausgeben lassen kann ohne umständlich php dateien von veyton zu nehmen und da ewig rumprobier. hab nicht mehr so viel zeit. brauch es bis dienstag. Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.