求助,SQL A表赋值B表并关联执行语句
答案:1 悬赏:20 手机版
解决时间 2021-01-10 01:27
- 提问者网友:
- 2021-01-09 20:58
求助,SQL A表赋值B表并关联执行语句
最佳答案
- 五星知识达人网友:掌灯师
- 2021-01-09 22:04
设A表ID与B表ID相同即认为A,B都存在
将b表NAME赋予A表NAME中
查询A表 B表 查出两表都有的记录
select * from A
where exists
(select 1 from B where A.ID= B.ID)
修改赋值
update A
set A.name= (select b.name from B where A.ID= B.ID)
where exists
(select 1 from B where A.ID= B.ID)
将b表NAME赋予A表NAME中
查询A表 B表 查出两表都有的记录
select * from A
where exists
(select 1 from B where A.ID= B.ID)
修改赋值
update A
set A.name= (select b.name from B where A.ID= B.ID)
where exists
(select 1 from B where A.ID= B.ID)
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯