如何从当前月份选择当前日期
本文关键字:选择 当前日期 | 更新日期: 2023-09-27 18:30:39
我想检索当月 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 条记录但我的查询没有给出任何结果
这是我认为您需要的查询。 它使用的所有函数在 Access SQL 中始终可用,无论查询是从 Access 会话中运行还是从外部运行(如在 c# 情况下)。
数据库引擎将计算这两个表达式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;
这是一个访问即时窗口会话,它解释了这些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