R
Robert
I have a SQL statement to look if there is an occurrence of double date/time
values and how many occurrences.
Now i need a SQL statement to get the average of the total number of
occurrences.
This is my SQL statement:
SELECT First(DVO.DateTime) AS [DateTime], Count(DVO.DateTime) AS
NumDuplicates
FROM DVO GROUP BY DVO.DateTime HAVING (((Count(DVO.DateTime))>1));
(I use the SQL statement with VB6)
Thanks in advance,
Robert
values and how many occurrences.
Now i need a SQL statement to get the average of the total number of
occurrences.
This is my SQL statement:
SELECT First(DVO.DateTime) AS [DateTime], Count(DVO.DateTime) AS
NumDuplicates
FROM DVO GROUP BY DVO.DateTime HAVING (((Count(DVO.DateTime))>1));
(I use the SQL statement with VB6)
Thanks in advance,
Robert