我想在当前月份的1-30之间检索数据[我正在使用MSACCESS Dbase这样做]以下是我正在尝试的查询 -
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
我在MSACCESS Dbase中持有的数据 -
Category1 9/7/2013 12:00:00 AM
Category1 9/8/2013 12:00:00 AM
Category2 10/8/2013 12:00:00 AM
所以输出应该只有2条记录 但我的查询没有结果
答案 0 :(得分:1)
以下是我认为您需要的查询。它使用的所有函数始终在Access SQL中可用,无论查询是在Access会话中运行还是从非运行(如在c#情境中)。
db引擎将评估这两个DateSerial
表达式,然后使用其结果过滤结果集。使用IssueDate
上的索引时,此方法会特别快。
SELECT
Count(usercategory) AS category_count,
usercategory
FROM user_category
WHERE
IssueDate >= DateSerial(Year(Date()), Month(Date()), 1)
AND IssueDate < DateSerial(Year(Date()), Month(Date()) + 1, 0)
GROUP BY usercategory;
这是一个Access Immediate窗口会话,它解释了那些DateSerial
表达式的逻辑......
? Date()
9/6/2013
? Year(Date())
2013
? Month(Date())
9
' get the date for first of this month ...
? DateSerial(Year(Date()), Month(Date()), 1)
9/1/2013
' now get the date for the last of this month ...
? DateSerial(Year(Date()), Month(Date()) + 1, 0)
9/30/2013