我正在尝试DateDiff 函数的一些示例
SELECT DATEDIFF(day,'2008-06-05','2008-08-05') AS DiffDate
该语句给了我一个错误 From keyword not found where expected 。为什么我会收到此错误,我该如何解决?另外,当我尝试这个时:
SELECT DATEDIFF(day,datebegin,datestop)
From table;
我得到这个错误"datediff" invalid identifier
。我怎样才能获得日差?