I have two tables which I want to join. I have tried LEFT, RIGHT, INNER joins on Table but no success.
Table1
Name1  Name2
------------
A      1
B      2
C      3
D      1
Table2
Name2  Name3
------------
1      x
1      y
2      x
3      x
3      y
3      z
4      y
The result for what I am looking for is:
ResultTable
Name1 Name2 Name3
------------------
A     1     x
A     1     y
B     2     x
C     3     x
C     3     y
C     3     z
D     1     x 
D     1     y
 
     
    