Exforsys

Online Training

Outer Join Operator Gives Different Results Than Sql-96 Outer Join

This is a discussion on Outer Join Operator Gives Different Results Than Sql-96 Outer Join within the SQL Server forums, part of the Database category; I'm converting Compatibility Level 80 SQL code to Compability Level 90, to upgrade from SQL Server 2000 to SQL ...


Go Back   Exforsys > Database > SQL Server

Register FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 10-18-2006, 07:53 PM
Junior Member
 
Join Date: Oct 2006
Posts: 1
RandyB is on a distinguished road
Outer Join Operator Gives Different Results Than Sql-96 Outer Join

I'm converting Compatibility Level 80 SQL code to Compability Level 90, to upgrade from SQL Server 2000 to SQL Server 2005.

I have hit a stumbling block when converting statements with OUTER JOIN operators *= and =* to LEFT OUTER JOIN and RIGHT OUTER JOIN statements, respectively.

Here is a comparison of results from the old and new syntax:

SELECT f.hz, f.amp
FROM freq f (NOLOCK), outcome o (NOLOCK), flip fl1 (NOLOCK)
WHERE o.id =* f.id AND
fl1.od =* f.od
-- returns 479,756 rows

SELECT f.hz, f.amp
FROM freq f (NOLOCK)
right outer join outcome o (NOLOCK) on o.id = f.id
right outer join flip fl1 (NOLOCK) on fl1.od = f.od
-- returns 415,533 rows

Can anyone help me figure out why the results are not the same, and how to formulate the new version query in order to obtain the same results as the old version?

Thanks for your help!

RandyB
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT -4. The time now is 02:53 PM.


Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.1.0
Copyright 2004 - 2007 Exforsys Inc. All rights reserved.