DateDiff在Access与Sql server中的差别
程序员文章站
2022-04-22 11:57:04
...
语法 DateDiff(interval, date1, date2 [ , firstdayofweek ] [ , firstweekofyear ] ) 差别在于interval是否要用引号; Access:DateDiff('n',lastActiveTime,'" + DateTime.Now + "')=10 Sql server: DateDiff(n,lastActiveTime,'" + DateTime.Now + "')=10
语法
DateDiff(interval, date1, date2 [, firstdayofweek] [, firstweekofyear] )
差别在于interval是否要用引号;
Access:DateDiff('n',lastActiveTime,'" + DateTime.Now + "')>=10
Sql server:DateDiff(n,lastActiveTime,'" + DateTime.Now + "')>=10
interval 参数 (参数:为操作、事件、方法、属性、函数或过程提供信息的值。)包含以下设置:
设置 | 说明 |
---|---|
yyyy | 年 |
q | 季度 |
m | 月 |
y | 某年的某一天 |
d | 天 |
w | 工作日 |
ww | 周 |
h | 时 |
n | 分 |
s | 秒 |
参数
Year
yyyy
Quarter
q
Month
m
Day of year
y
Day
d
Weekday
w
Week
ww
Hour
h
Minute
n
Second
s
下一篇: PHP截取指定图片大小的方法_php技巧
推荐阅读
-
MSSQL批量替换语句 在SQL SERVER中批量替换字符串的方法
-
SQL Server中通过扩展存储过程实现数据库的远程备份与恢复
-
sql server中通过查询分析器实现数据库的备份与恢复方法分享
-
SQL Server中实现二进制与字符类型之间的数据转换
-
N字符在Sql Server字段类型中的重要性概述
-
sql not in 与not exists使用中的细微差别
-
在SQL Server中实现最短路径搜索的解决方法
-
SQL Server2012在开发中的一些新特性
-
在SQL Server 2005中创建CLR存储过程的详细介绍
-
MSSQL批量替换语句 在SQL SERVER中批量替换字符串的方法