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 -> Re: zip code issue

Re: zip code issue

From: Brian Peasland <dba_at_nospam.peasland.net>
Date: Wed, 14 Mar 2007 14:47:26 -0500
Message-ID: <45f844cc$0$16316$88260bb3@free.teranews.com>


anitra_tanner_at_yahoo.com wrote:
> HELP I need help with a zip code issue. I have a columm zipcode,
> that stores the regular 5 digit zip or the zip + 4.; I need to
> seperate the 2 in my where clause. I cant figure out how to word it
> just to get the fields that only have the 5 digit and not the 5 digit
> +4. Any ideas?
>

The SUBSTR function can be used to pull out a portion of the string similar to the following:

WHERE SUBSTR(zipcode,1,5) = 98765

Additionally, you can use something more like:

WHERE zipcode LIKE '98765%'

HTH,
Brian

-- 
===================================================================

Brian Peasland
dba_at_nospam.peasland.net
http://www.peasland.net

Remove the "nospam." from the email address to email me.


"I can give it to you cheap, quick, and good.
Now pick two out of the three" - Unknown

-- 
Posted via a free Usenet account from http://www.teranews.com
Received on Wed Mar 14 2007 - 14:47:26 CDT

Original text of this message

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