I have two tables (tables A and B) that look like the following:
Table A:
Col 1 Col 2
--------------
A 1
A 2
A 3
...
A 15
...
Table B:
Col 3 Col 4
--------------
A a
A b
I would like to write a query to join table B col 4 to table A. Table B col 3 will match table A col 1, so I would like to join on this column. The result I am looking for is:
Table C:
Col 1 Col 2 Col 4
-----------------------
A 1 a
A 2 b
A 3 null
A 4 null
....
A 15 null
....
I tried the following:
select
tableA.col1,
tableA.col2,
tableB.col4
from
tableA
inner join tableB on tableA.col1 = tableB.col3
But this yields the result:
Col 1 Col 2 Col 4
-----------------------
A 1 a
A 1 b
A 2 a
A 2 b
....
A 15 a
....
