Hi all,
I want to combine 2 tables into one. Let say I have:
Table1
ID Name
1 A
2 B
3 C
Table2
ID Name
4 D
5 E
6 F
I want to make Table3
Name1 Name2
A D
B E
C F
How can I do this in SQL Server? Any help is greatly appreciated.