首页 > 数据库 > SQL Server > 正文

ms sql 更新表A中某列为表B中的值

2019-11-03 08:35:07
字体:
来源:转载
供稿:网友
ms sql 更新表A中某列为表B中的值
view plaincopy to clipboardPRint?
select *    
from dbo.NT_areapin   
go   
select *    
from dbo.NT_dict_area   
  
update NT_areapin   
set AllNamePin='PengShui'  
from NT_areapin   
where AreaId='486'  
go   
update NT_dict_area    
set BriefNamePin = NT_areapin.BriefNamePin,AllNamePin = NT_areapin.AllNamePin   
from NT_dict_area,NT_areapin    
where NT_dict_area.Name = NT_areapin.Name;  
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表