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: Why is this code not working?

RE: Why is this code not working?

From: Johnston, Tim <TJohnston_at_quallaby.com>
Date: Tue, 11 Dec 2001 08:55:39 -0800
Message-ID: <F001.003D9EB0.20011211083024@fatcity.com>

You are trying to look for a column name be equal to two different names... I assume you want an OR instead of the AND...

select table_name, column_name
from dba_tab_columns
where (column_name = 'REGISTRATION_NUMBER' OR column_name = 'DOCUMENT_NUMBER') -----Original Message-----
Sent: Tuesday, December 11, 2001 10:20 AM To: Multiple recipients of list ORACLE-L

When I run this code both columns I get no rows returned. When I do a desc on one of the tables I see both columns. So, why am I not getting any data?

select table_name, column_name
from dba_tab_columns
where
(column_name = 'REGISTRATION_NUMBER' and column_name = 'DOCUMENT_NUMBER')

Thanks,
Ken Janusz, CPIM
Database Conversion Lead
Sufficient System, Inc.
Minneapolis, MN

--

Please see the official ORACLE-L FAQ: http://www.orafaq.com
--

Author: Ken Janusz
  INET: ken.janusz_at_sufsys.com

Fat City Network Services    -- (858) 538-5051  FAX: (858) 538-5051
San Diego, California        -- Public Internet access / Mailing Lists
--------------------------------------------------------------------
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).
--

Please see the official ORACLE-L FAQ: http://www.orafaq.com
--

Author: Johnston, Tim
  INET: TJohnston_at_quallaby.com
Fat City Network Services    -- (858) 538-5051  FAX: (858) 538-5051
San Diego, California        -- Public Internet access / Mailing Lists
--------------------------------------------------------------------
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 Tue Dec 11 2001 - 10:55:39 CST

Original text of this message

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