SQL中如何把A表的字段数据更新到B表的字段

来源:互联网 发布:手机谱曲的软件 编辑:程序博客网 时间:2024/04/27 11:55
update t_test1 set name = (select name from t_test2 b where t_test1.id = b.id)