How can I do an UPDATE statement with JOIN in SQL Server?

前端 未结 16 1247
名媛妹妹
名媛妹妹 2020-11-21 11:51

I need to update this table in SQL Server with data from its \'parent\' table, see below:

Table: sale

id (int)
udid         


        
16条回答
  •  执念已碎
    2020-11-21 12:05

    Try this one, I think this will works for you

    update ud
    
    set ud.assid = sale.assid
    
    from ud 
    
    Inner join sale on ud.id = sale.udid
    
    where sale.udid is not null
    

提交回复
热议问题