I want to get the count of how many different dates there are in a table. How would I write that query?
I have this right now
Select Count (date) Total
From PRONOTES
But as you can see this just give me the total of dates. I want to know how many different dates are in the DB. Is there a distinct function or do I have to come up with a where statement.
Thanks in advance.
I have this right now
Select Count (date) Total
From PRONOTES
But as you can see this just give me the total of dates. I want to know how many different dates are in the DB. Is there a distinct function or do I have to come up with a where statement.
Thanks in advance.