SQL UPDATE语句怎么写?

2024-11-23 11:12:24
推荐回答(1个)
回答1:

5 将A表中的某个字段的是更新为B表中某个字段的值,条件是A表中的某个字段=B表中某个字段相等 补充: 将A表中的某个字段的值更新为B表中某个字段的值,条件是A表中的某个字段=B表中某个字段 补充: Update ddtj Set cgry = (Select xdry From cght Where cght.hthm = ddtj.hth) 消息512,级别 16,状态 1,第 1 行 子查询返回的值不止一个。当子查询跟随在 =、!=、<、<=、>、>= 之后,或子查询用作表达式时,这种情况是不允许的。 语句已终止。 满意答案猪哥□37级2009-05-06update B set col1=A.col from A where A.x=b.X 补充: update table2 set cname=a.B from table1 as a,table2 as b where a.C=b.tid 补充: update ddtj set cgry=b.xdry from ddtj a,cght b where a.hth=b.hthm 其他回答(3)loveDream/ty6级2009-05-06update B set Ba=(select Aa from A where Ab=(select Bb from B))/aiq获利非尔4级2009-05-06MS SQL SERVER的写法UPDATE ASET A1 = B1