1) DateDiff函数
年、月、日,时、分、秒 都可以
year, month, day, hour, minute, second 带入:参数1
DateDiff(参数1,时间1,时间2)
2) 比如5除以3保留2位小数。如果5/3的话就等于1了,怎么使得结果是1.67呢
select 5/(3*1.0)
结果
----------
1.666666
select cast(round((5+0.)/3,2) as real)
select cast(round(5/(3*1.0),2) as numeric(9,2))
结果
----------
1.67
阅读(824) | 评论(0) | 转发(0) |