假设我有以下 2 个表:
Table1: Table2:
Col1: Col2: Col3: Col1: Col2: Col4:
a b c a b d
e <null> f e <null> g
h i j h i k
l <null> m l <null> n
o <null> p o <null> q
现在,我想将这些表加入Col1
并Col2
带回整个集合,如下所示:
Result:
Col1: Col2: Col3: Col4:
a b c d
e <null> f g
h i j k
l <null> m n
o <null> p q
所以,我尝试了一个类似的 SQL:
SELECT Table1.Col1, Table1.Col2, Table1.Col3, Table2.Col4
FROM Table1 INNER JOIN Table2
ON Table1.Col1 = Table2.Col1
AND Table1.Col2 = Table2.Col2
但它与 中的NULL
值不匹配Col2
,所以我最终得到:
Result:
Col1: Col2: Col3: Col4:
a b c d
h i j k
我怎样才能得到我正在寻找的结果?
谢谢!