Hey guys.
I have a table that has a date field in it and i want to return distinct months.
I currently use "SELECT DISTINCT DateAdded FROM tblJobs";
The problem with this is it will return every day of the month..I need it to only return Jan, Feb, Mar etc... Not Jan-01, Jan-02,Jan-03,Mar-05,Mar-09...etc
Any ideas how this can be done?
Thanks!