当前位置: 代码迷 >> SQL >> SQL批改多条记录
  详细解决方案

SQL批改多条记录

热度:47   发布时间:2016-05-05 14:32:10.0
SQL修改多条记录
SQL 多记录修改
Update Table_1
Set
UserName=Table_2.UserName
From
Table_2,Table_1 Where Table_2.UserCode=Table_1.UserCode
  相关解决方案