1.给表添加,修改字段
--添加 alter table Info add ExpireDate varchar(50) not null --修改(手动修改表结构时,有时会遇到TimeOut过期的问题,用sql改的时候没有发现异常) alter table Info alter column ExpireDate datetime not null
2.update ··· from ··· 根据两表关联ID更新对应数据
update tableA set tableA.aId= tableB.bId from tableB where tableA.aId=tableB.aId