SELECT t1.[Ticket Number], t1.[Time Received], t1.[Time Read], t1.[Time Replied], t1.[Replied By], t1.[Called Customer?], t1.[Call Duration], t1.[Email Duration], t1.[General Issue]
FROM t1
WHERE [DDATE]=[GETDATE()];
此处DDATE
是一个包含日期的字段。
我的查询只需提取当天的详细信息,t1
就是表格。
那么如何让这个查询自动将今天的日期作为参数?
我在MS Access 2012中制作了表格和表格以及查询?
答案 0 :(得分:1)
只要没有时间元素进行DDate,就使用Date()。
SELECT t1.[Ticket Number], t1.[Time Received],
t1.[Time Read], t1.[Time Replied],
t1.[Replied By], t1.[Called Customer?],
t1.[Call Duration], t1.[Email Duration], t1.[General Issue]
FROM t1
WHERE [DDATE]=DATE()