How can i get the count of date inside a database. the date might be duplicate, so i would like to know how many days are in the table.
i try in this way...
SELECT count(distinct( format([mydate],"dd/mm/yyyy"))) as DayCount from tbl
but error message "undefined function 'distinct' in expression"
Help needed...
i try in this way...
SELECT count(distinct( format([mydate],"dd/mm/yyyy"))) as DayCount from tbl
but error message "undefined function 'distinct' in expression"
Help needed...