From: | denis(at)coralindia(dot)com |
---|---|
To: | "cristi" <cristi(at)dmhi(dot)ct(dot)ro>, <pgsql-novice(at)postgresql(dot)org> |
Subject: | Re: update |
Date: | 2002-02-27 05:36:52 |
Message-ID: | 007601c1bf50$c36130a0$0232a8c0@coralindia.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-novice |
TRy
update my_table set codlm='22'||substring(codlm,3) where substr(codlm,1,2) = '45'
HTH
Denis
----- Original Message -----
From: cristi
To: pgsql-novice(at)postgresql(dot)org
Sent: Tuesday, February 26, 2002 12:13 PM
Subject: [NOVICE] update
I have a table (my_table) with this structure:
codlm varchar(7)
The records are:
45122AD
45122AD
45123AC
440331B
430332C
440222X
I want to change the first 2 letters from 45 to 22 something like this:
22122AD
22122AD
22123AC
440331B
430332C
440222X
I tried:
update my_table set codlm='22'||substring(codlm,2) where codlm like '45'
but the result is:
225
225
225
440331B
430332C
440222X
Where is the mistake?
Thanks!
From | Date | Subject | |
---|---|---|---|
Next Message | cristi69 | 2002-02-27 06:17:05 | Re: update |
Previous Message | Josh Berkus | 2002-02-27 00:34:01 | Re: Major newbie - Part deux |