Below is the code I currently have that select distinct
Dates from my table based on a date range. There is a total
of 171 unique dates in this query. My question is how can
I create a query that will just give me the total of 171
instead of showing each date?
Dates from my table based on a date range. There is a total
of 171 unique dates in this query. My question is how can
I create a query that will just give me the total of 171
instead of showing each date?
Code:
SELECT DISTINCT [All gages].[DATE DUE]
FROM [All gages]
WHERE ((([All gages].[DATE DUE]) Between #3/1/2008# And #3/31/2009#))
ORDER BY [All gages].[DATE DUE];