SQL Server的Datediff和Access的Datediff的区别
作者:webfly 日期:2007-08-12
What function does: returns a variant to reflect the time difference between two dates
Syntax: DateDiff( inteval, firstdate, seconddate [,firstweekday[ [ , firstweek])
Example
The following shods the difference in days between two dates:
= DateDiff("d", "11-05-2002", "11-07-2002") returns 2
The following table lists the valid time periods and their interval values.
参数
Year
yyyy
Quarter
q
Month
m
Day of year
y
Day
d
Weekday
w
Week
ww
Hour
h
Minute
n
Second
s
Note: Take special care for "ww" vs "w." "WW" is for a week.
AgeYrs: DateDiff("d",[INSERVICE],Now())/365
Gives me this result:
14.5972602739726
in SQL the function:
AgeYrs = DATEDIFF(d,INSERVICE,getdate())/365
access中找出5分钟内注册的用户
select id,uid,pwd,addtime from [user] where DateDiff('n',addtime,now())<=5
上一篇
下一篇

文章来自:
Tags:
相关日志: