How to select current dates from current month
问题 I would like to retrieve the data between 1 -30 of the current month [ i am using MSACCESS Dbase to do so] Below is the query that i am trying -- SELECT count(usercategory) as category_count ,usercategory FROM user_category where IssueDate between DATEADD('m', DATEDIFF('m', 0, DATE()) - 0 , 0) and DATEADD('m', DATEDIFF('m', 0, DATE()) + 1, - 1 ) group by usercategory Data that i am holding in my MSACCESS Dbase - Category1 9/7/2013 12:00:00 AM Category1 9/8/2013 12:00:00 AM Category2 10/8/2013