MySQL Forums
Forum List  »  German

Re: Eine nicht einfache Abfrage
Posted by: Andreas Heiniger
Date: August 14, 2006 08:15AM

Danke für Deine Antwort Frank
habe es vor einem Jahr in Access mal so hinbekommen und es hat funktioniert:

SELECT strecke, kategorie, name, vorname, teamname
FROM race
WHERE team IN (SELECT team
FROM race
GROUP BY team
HAVING Count(*)>2)
AND Nz(team,'') <> ''
ORDER BY team;

dachte in MySQL würde es auch irgenwie gehen.

Options: ReplyQuote


Subject
Views
Written By
Posted
4083
August 14, 2006 07:16AM
3143
August 14, 2006 07:48AM
Re: Eine nicht einfache Abfrage
2783
August 14, 2006 08:15AM
2768
August 31, 2006 06:19AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.