Nieuw lid |
|
Ranco dat werkt niet volgens mij?
Mixing of GROUP columns (MIN(),MAX(),COUNT(),...) with no GROUP columns is illegal if there is no GROUP BY clause
Probeer deze maar
SELECT naam, count( id ) AS aantal
FROM tabel
GROUP BY naam
SELECT naam, count( id ) AS aantal FROM tabel GROUP BY naam
|