Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はtable1with columnsA , B , Cと別のwith columns を持ってtable2いますA, D。
table1
A , B , C
table2
A, D
列を表示するビューを作成したいのですが、列がなくてもA, B, C, D列のすべての値が必要ですAAtable2
A, B, C, D
A
私は試した:
select a, b, c, d from table 1 inner join table 2 where table1.a = table2.a
何かを提案する
OUTER JOIN を使用する必要があります。
SELECT t1.a, t1.b, t1.c, t2.d FROM table t1 LEFT JOIN table t2 ON t1.a = t2.a;