sql语句 查询当前表内容,当前某个字段内容替换为别的表的字段值

2024-11-02 05:21:39
推荐回答(2个)
回答1:

select a.a,a.b, b.x from a left outer join b on a.id=b.id
二表要有字段可以关联,看上面 on a.id=b.id

回答2:

select id,a,b,c,(select top 1 列 from table2 where table2.id=table1.id)as d from table1