Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> Re: update statement ???
You have to issue the following command:
UPDATE cli_branches
SET brch_name = REPLACE(brch_name, ' (NO PHONE #S)');
regards,
Mauricio Vélez
Janet Linsy <janetlinsy_at_yahoo.com> wrote:
Hi all,
I need to update a column (brch_name) to be without
(NO PHONE #S) string. So 3954 will be Denver, 3955
will be Golden, and 3963 will be LOVELAND 29TH, etc.
How to write this update statement??? Thank you!
1* select brch_id, brch_name from cli_branches where
upper(brch_name) like '%PHONE%'
SQL> /
BRCH_ID BRCH_NAME
---------- ------------------------------3954 DENVER (NO PHONE #S)
3956 ENGLEWOOD (NO PHONE #S) 3957 LITTLETON (NO PHONE #S) 3958 CHARLOTTE (NO PHONE #S)
Fat City Network Services -- 858-538-5051 http://www.fatcity.com San Diego, California -- Mailing list and web hosting services
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 Wed Jul 30 2003 - 16:49:23 CDT
![]() |
![]() |