Folgende Anfrage liefert alle "Datümer"
(ich weiss das die Mehrzahl von Datum Daten ist) und die Anzahl der Datensätze:
SQL-Code:
SELECT CONVERT(char(8), Zeitraum, 112) AS Datum, Count(*) AS Anzahl
FROM tabelle
GROUP BY CONVERT(char(8), Zeitraum, 112)
ORDER BY 1