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.

link|improve this question

67% accept rate
feedback

3 Answers

up vote 5 down vote accepted
WITH    t1 AS
        (
        SELECT  a.*, ROW_NUMBER() OVER (ORDER BY id) AS rn
        FROM    table1 a
        ),
        t2 AS
        (
        SELECT  a.*, ROW_NUMBER() OVER (ORDER BY id) AS rn
        FROM    table2 a
        )
SELECT  t1.name, t2.name
FROM    t1
JOIN    t2
ON      t1.rn = t2.rn
link|improve this answer
1  
little bug: ON t1.rn = r2.rn – ammoQ Jun 8 '09 at 9:57
ammoQ: Um.... sure – Quassnoi Jun 8 '09 at 9:57
feedback
select t1.Name Name1, t2.Name Name2
from Table1 t1, table2 t2
where t1.ID = t2.ID

OR

select t1.Name Name1, t2.Name Name2
from Table1 t1 join table2 t2
     on t1.ID = t2.ID
link|improve this answer
What if there is no column ID? – ByulTaeng Jun 8 '09 at 9:49
If there is no ID how are the tables related? What criteria determines Name1 = A corresponds to Name2 = D? – Rashmi Pandit Jun 8 '09 at 10:06
If you do not have id, use Quassnoi's solution and in the order by clauses replace id with the primary keys of your table. – Rashmi Pandit Jun 8 '09 at 10:20
As primary keys form the clustered index, so your row in Table1 will match tht in Table2 – Rashmi Pandit Jun 8 '09 at 10:24
feedback
SELECT Table1.Name as Name1, Table2.Name as Name2 
FROM Table1 
NATURAL JOIN Table2;

[Edit: If you want to actually CREATE a new table, add a INTO Table3]

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.