笔记之:

 

 
  
  1. --同步两个数据库相同名字的ID
  2. USE DB_B
  3. update  table_B set table_B.USERID=A.USERID 
  4. from DB_A.dbo.table_A A  --A为table_A别名
  5. where A.UNAME=table_B.UNAME