我有三个表,一个是默认值表。
我需要做的是选择 TableA 和 TableB 的值,并从默认值的选择中回填任何缺失值。
每个表都有一个 Key 和 Value 列。
数据示例可能如下所示:
DefaultTable
-------------
Key1 | Value1
Key2 | Value2
Key3 | Value3
Key4 | Value4
Key5 | Value5
TableA
--------------
Key3 | AValue3
Key5 | AValue5
TableB
--------------
Key1 | BValue1
所以我的最终数据集需要如下所示:
Key1 | BValue1
Key2 | Value2
Key3 | AValue3
Key4 | Value4
Key5 | AValue5
我玩过各种连接,但似乎无法破解它,我们将不胜感激。
谢谢