vote up 1 vote down star

How can you do a full outer join in sqlserver 2005?

Seems like there is full outer join in sqlserver 2008 but I need to do this in sqlserver 2005.

In other words, I am merging two views based on the ACCTNUM col in both views (The views show aggregates so there is at most one ACCTNUM record in each view for each account) and I would like every record in each table to show up, even when there is no match in the other (ie, full outer join).

flag

55% accept rate
FULL JOIN or FULL OUTER JOIN are supported in 2005 – northpole Jun 4 at 16:49

5 Answers

vote up 1 vote down check

SQL Server 2005 supports full joins:

In fact, I think FULL JOIN works at least as far back SQL Server 7.

link|flag
vote up 3 vote down

This will work in SQL 2005

Select
    tableA.Column,
    tableA.AnotherColumn,
    tableB.Column
From
    tableA
Full Outer Join
    tableB On tableA.Id = tableB.Id

Note you can use Full Join or Full Outer Join, it doesnt make a difference.

link|flag
vote up 1 vote down
SELECT A.*, B.* FROM TABLE1 A FULL JOIN TABLE2 B ON A.Id = B.TableAID
link|flag
vote up 1 vote down

Note that if you are using Access to connect to a DB, you can't use full outer join, since Access does not support it.

link|flag
1  
..except for pass-through queries or ADPs where it's run on the SQL box and not in JET – gbn Jun 4 at 17:09
vote up 1 vote down

Full outer joins should be supported by SQL Server 2005 - what makes you think they aren't?

link|flag

Your Answer

Get an OpenID
or

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