私は2つのテーブルを持っています。Table1
ストア #1 の
Table2
製品在庫を含み、ストア #2 の製品在庫を含む
Table1:
upc | description | QtyOnHand1
4050 | cantaloupe | 10
4131 | fuji apples | 20
5033 | strawberries | 5
Table2
upc | description | QtyOnHand2
4050 | cantaloupe | 15
4131 | fuji apples | 23
4121 | aprictos | 13
次の結果を得るには、どの select ステートメントを使用する必要がありますか。
upc | description | QtyOnHand1 | QtyOnHand2
4050 | cantaloupe | 10 | 15
4131 | fuji apples | 20 | 23
5033 | strawberries | 5 | null
4121 | apricots | null | 13