赞
踩
--创建临时表
create table #temp(
ID int null,
NewName nvarchar(200) null
)
--插入匹配的数据到临时表
insert into #temp select w.ID,c.NewName from WechatUser w
left join CreatedMeeting c on w.SqID=c.ID
--批量修改
update Doctor set NewName=te.NewName from #temp te where Doctor.CreatedBy=te.ID
--删除临时表
drop table #temp
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。