赞
踩
- update 表A inner join 表B set xxx=xxx ... where A.ID=B.Aid and xxx=xxx
-
- 注意
-
- 1、update 时,更新的表不能在set和where中用于子查询;
-
- 2、update 时,可以对多个表进行更新(Sql Server不行);
-
- 如:update table_a A,table_b B set A.B_ID=B.ID ,B.A_ID=A.ID;
-
- 3、update 后面可以做任意的查询,这个作用等同于FROM;
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。