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

Home -> Community -> Usenet -> c.d.o.misc -> most preferable SQL

most preferable SQL

From: <Amritha.Datta_at_gmail.com>
Date: 8 Feb 2007 05:52:09 -0800
Message-ID: <1170942729.940359.281210@s48g2000cws.googlegroups.com>


Which is most preferable between the below SQLs? In terms of consuming resources or fast execution.

  1. Update Table1 set Reason = 'SX#' where
    (Sex <> 'M' or
    Sex <> 'F' or trim(Sex) <> '') and Key = inKey And Sub_Key = inSubKey and Reason is NULL;
  2. Update Table1 set Reason = 'SX#' where
    (Sex not in ( 'M', 'F','') and
    Key = inKey And Sub_Key = inSubKey and Reason is NULL;

I am calling this SQL in the stored procedure. If there is another better way of writing SQL for the above query, please let me know.

Thanks in advance.

Amrith Received on Thu Feb 08 2007 - 07:52:09 CST

Original text of this message

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