mysql与sqlserver关联更新对比 作者:whwtree 时间:2022年02月03日 分类:学习总结 阅读:463 --mysqlupdate student s, city cset s.city_name = c.namewhere s.city_code = c.code;--sqlserverupdate t1 set t1.name = t2.namefrom user_01 t1 join user_02 t2 on t1.code = t2.codewhere t2.name is not null; 赞 0