日期:2014-05-19  浏览次数:20346 次

置换某一字段的部分内容
比如:

字段
2007-3-7   1:00
2007-3-7   2:00
2007-3-7   3:00

都换成
2007-3-8     1:00
2007-3-8     2:00
2007-3-8     3:00




------解决方案--------------------
update tb set col=dateadd(day,1,col) where convert (char(8),col,120)= '2007-3-7 '
------解决方案--------------------
--如果字段是日期型的

Update
TableName
Set
ColName = DateAdd(dd, 1, ColName)