SQL update join on 连接更新


http://stackoverflow.com/questions/1293330/how-can-i-do-an-update-statement-with-join-in-sql
create table sale
(
id int,
udid int,
assid int
)

create table ud
(
id  int,
assid  int
)

select * from sale
select * from ud

select * 
from sale inner join ud on sale.id = ud.id

update sale set sale.assid = ud.assid
from sale inner join ud on sale.id = ud.id

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM