我有Table1有行A和B,Table2有行C和D.
我想将它们加入B列和C列,并在A列和D列中显示相应的值。
不知道从哪里开始。
此致
答案 0 :(得分:3)
select table1.a, table2.d
from table1
join table2 on table1.b = table2.c
答案 1 :(得分:0)
Select
t1.A
,t1.B
,t2.C
,t2.D
FROM
table1 t1
Inner Join
table2 t2
On
t2.C = t1.B