获取数据库中两个时间字段的相差天数及ABS/DATEDIFF函数应用
程序员文章站
2023-12-12 08:40:22
复制代码 代码如下:select abs(datediff(dd,enddate,begindate)) from dbo.workingplan 其中,workingpl...
复制代码 代码如下:
select abs(datediff(dd,enddate,begindate)) from dbo.workingplan
其中,workingplan 为一张表,
enddate和begindate为workingplan 表中的结束时间和开始时间
如果哪里有不正确的地方,欢迎批评指正,共同进步。