我试图在查询中使用DateDiff函数。虽然我使用它时会给我一个错误。我有MS-Access 2007.我尝试在查询中使用DateDiff函数。我需要在几分钟内获得这些时间之间的差异。
这是我想要做的事情:
DateDiff('n',[timeregistered],[timeresolved])
这是我的错误信息:
You ommited an operand or operator, you entered an invalid character or comma, or you entered text without surrounding it in quotation marks.
然后光标移到' n'后面的第一个逗号。 我在微软网站上搜索过,语法似乎是正确的。
答案 0 :(得分:1)
使用:
DateDiff("n",[timeregistered],[timeresolved])
和/或:
DateDiff('n';[timeregistered];[timeresolved])