About Date Function 应用汇总
摘要:
sql server 日期函数 Sql Server中的日期与时间函数 1.当前系统日期、时间 select getdate() 2. dateadd在向指定日期加上一段时间的基础上,返回新的 datetime 值 例如:向日期加上2天 select dateadd(day,2,'2004-10-15')--返回:2004-10-17 00:00:00.000 3. datediff ... 阅读全文
posted @ 2007-11-27 17:28 LongSky 阅读(441) 评论(0) 推荐(0) 编辑