在MYSQL中如何用一个字段的值替换另一个字段的值
答案:5 悬赏:70 手机版
解决时间 2021-11-24 18:58
- 提问者网友:不爱我么
- 2021-11-24 14:42
在MYSQL中如何用一个字段的值替换另一个字段的值
最佳答案
- 五星知识达人网友:神也偏爱
- 2021-11-24 15:39
update b set bc1 = ( select ac1 from a where a.aid = b.bid)
where exists (select 1 from ac1 where a.aid = b.bid)
where exists (select 1 from ac1 where a.aid = b.bid)
全部回答
- 1楼网友:酒者煙囻
- 2021-11-24 19:04
update b set b.bid=a.ac1 where a.aid=b.bid
- 2楼网友:玩家
- 2021-11-24 18:56
q
- 3楼网友:夜风逐马
- 2021-11-24 18:09
update b,a
set b.bc1=a.ac1
where b.bid=a.id;
set b.bc1=a.ac1
where b.bid=a.id;
- 4楼网友:你可爱的野爹
- 2021-11-24 16:51
UPDATE b
SET b.bc1=a.ac1
WHERe a.aid=b.bid
SET b.bc1=a.ac1
WHERe a.aid=b.bid
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯