Hallo
Ich bekomme es nicht auf die reihe Datensätze zu zählen in der SQL Anweisung.
Folgendes Problem:
Tabelle xxx hat mehrmals verschiedene Benutzer aufgeführt wo dementsprechend auch mehrmals das gleiche Produkt dabei steht
Bsp:
Benutzer - Produkt
xyz DSL1000
xyz DSL2000
zyx DSL3000
xyz DSL1000
was ich jetzt möchte ist zeige alle produkte von Benutzer xyz, liste diese einzeln auf und zähle wie oft das jeweilige vorkommt.
zBsp.: DSL1000 = 4mal usw
hab ich schon versucht, meint aber SQL
hab das Forum schon nach passenden Sachen durchsucht, aber so in der Art und Weise nicht gefunden.
Ich bekomme es nicht auf die reihe Datensätze zu zählen in der SQL Anweisung.
Folgendes Problem:
Tabelle xxx hat mehrmals verschiedene Benutzer aufgeführt wo dementsprechend auch mehrmals das gleiche Produkt dabei steht
Bsp:
Benutzer - Produkt
xyz DSL1000
xyz DSL2000
zyx DSL3000
xyz DSL1000
was ich jetzt möchte ist zeige alle produkte von Benutzer xyz, liste diese einzeln auf und zähle wie oft das jeweilige vorkommt.
zBsp.: DSL1000 = 4mal usw
PHP-Code:
SELECT COUNT (*) AS anz FROM xxx WHERE datum >= '$startdate' AND datum <= '$enddate'
PHP-Code:
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '*) AS anz FROM xxx WHERE datum >= '1129932000' AND datum <= '11' at line 1
Kommentar