Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> RE: Any known problems using NOT IN ?

RE: Any known problems using NOT IN ?

From: Siddharth Haldankar <shaldank_at_cisco.com>
Date: Wed, 17 Dec 2003 22:54:30 -0800
Message-ID: <F001.005DA35D.20031217225430@fatcity.com>
















Naveen,

The column does have nulls and this was the problem. Thanks for the insight.

 

Thanks


Siddharth Haldankar

Zensar Technologies Ltd.

Cisco Systems Inc.

(Offshore Development Center)

#  : 091 020 4128394

shaldank@cisco.com

s.haldankar@zensar.com

 

-----Original Message-----
From: ml-errors@fatcity.com [mailto:ml-errors@fatcity.com] On Behalf Of Naveen, Nahata (IE10)
Sent: Thursday, December 18, 2003 11:59 AM
To: Multiple recipients of list ORACLE-L
Subject: RE: Any known problems using NOT IN ?

 

Doess the column crs.os_id_fk1 contain nulls?

 

Regards

Naveen

-----Original Message-----
From: Siddharth Haldankar [mailto:shaldank@cisco.com]
Sent: Thursday, December 18, 2003 10:54 AM
To: Multiple recipients of list ORACLE-L
Subject: Any known problems using NOT IN ?

Hi Gurus,

 

I have a problem using NOT IN clause in Oracle. However using NOT EXISTS, gives me the right output. Are there any known limitations.

 

This query selects from the master records wherein child records are not active.

 

select * from ct_software_release csr where

  csr.class         = 'NS'

  AND    csr.active_flag   = 'Y'

  AND    csr.os_id_pk not IN

  (SELECT crs.os_id_fk1 FROM CT_ROADMAP_SOFTWARE crs

        WHERE crs.active_flag  = 'Y');

 

The sub-query in the above case gives 1800 rows. The above query fails to give any rows.

                                                                                 

select * from ct_software_release csr where

  csr.class         = 'NS'

  AND    csr.active_flag   = 'Y'

  AND    NOT EXISTS

        (SELECT 1 FROM CT_ROADMAP_SOFTWARE crs

        WHERE crs.os_id_fk1 = csr.os_id_pk

                                AND crs.active_flag  = 'Y');                                                           

 

This above query works fine.

 

 

 

Thanks


Siddharth Haldankar

Zensar Technologies Ltd.

Cisco Systems Inc.

(Offshore Development Center)

#  : 091 020 4128394

shaldank@cisco.com

s.haldankar@zensar.com

 

 

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Siddharth Haldankar
  INET: shaldank_at_cisco.com

Fat City Network Services    -- 858-538-5051 http://www.fatcity.com
San Diego, California        -- Mailing list and web hosting services
---------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message
to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).
Received on Thu Dec 18 2003 - 00:54:30 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US