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

Home -> Community -> Usenet -> c.d.o.server -> How would I....

How would I....

From: Jon Bon Jovi <jon_at_bon.com>
Date: Mon, 03 Dec 2001 15:25:33 -0700
Message-ID: <3C0BFBDD.4ADDD91D@bon.com>


Take the first letter of a varchar2 column and determine if it's a char or a number?
ie.

select decode(substr(name,1,1),<IF STRING>,name,'LOT '||name) from table

If the first char of the name column is a string then just use the name column, otherwise
concatenate the word 'LOT ' to the beginning of the column.

Thanks. Received on Mon Dec 03 2001 - 16:25:33 CST

Original text of this message

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