vote up 0 vote down star
SELECT
    a,
    last_note_user,
    c,
    d,
    iso_src
FROM
    X
    CROSS JOIN Y
    CROSS JOIN Z
    LEFT OUTER JOIN W
        ON W.last_note_user = Z.userid
           AND W.user_ten = Y.iso_src

The above ANSI code fetch me 107 records,When I giving the same query without ANSI code it is fetching 875 records.The non ANSI query is below:

SELECT
    a,
    last_note_user,
    c,
    d,
    iso_src
FROM
    X,
    Y,
    Z,
    W
WHERE
    W.last_note_user = Z.userid(+)
    AND W.user_ten = Y.iso_src(+)

why there is difference in the two query with ANSI and without ANSI standards?? By answering the above query please help me out!!!

flag

0% accept rate

2 Answers

vote up 4 vote down

Your old-style query has the (+) symbols on the wrong side of the predicate. It should be:

SELECT
    a,
    last_note_user,
    c,
    d,
    iso_src
FROM
    X,
    Y,
    Z,
    W
WHERE
    W.last_note_user (+) = Z.userid
    AND W.user_ten (+) = Y.iso_src

But I wouldn't use the old-style syntax any more really.

link|flag
vote up 0 vote down

OUTER JOINS with old ANSI-syntax are ambiguous, so who knows what the query optimizer understands with this.

If the first SQL is producing the right rows, forget about the ANSI version and move on.

link|flag
The first SQL is the ANSI one, and is the correct one. As Tony pointed out, the Oracle-specific version has the (+) signs on the wrong side of the condition, which is causing the difference. – Dave Costa Jul 24 at 12:42

Your Answer

Get an OpenID
or

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