create table A (日期 nvarchar(20))
insert into A values('2003-12-31:16:19:20')
update A set 日期='2013-12-31:16:19:20' where 日期='2003-12-31:16:19:20'
select * from A
update a
set 字段 = '2013-12-31:16:19:20'
where 字段= '2003-12-31:16:19:20' ------解决方案-------------------- update 表名
set 日期=dateadd(year,10,日期)
where DATEPART(YEAR,日期)='2003' ------解决方案-------------------- 你的数据都不是datetime类型 不好用日期dateadd来更新 只能字符串更新了 ------解决方案--------------------
这样吗:
update 表名
set 日期=replace(convert(varchar(30),日期,120),'2003','2013')