i have a problem here.
in my database i’ve value in mobile_phone column like 628932323 but i wanna change every row which use 62 to 0
old value : 628932323
new value : 08932323
can someone help me to solve my problems. thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you are using oracle 10g or higher, you can use the regexp_replace function http://docs.oracle.com/cd/B19306_01/server.102/b14200/functions130.htm
Or a more old-fashioned way without:
Just be careful with leading spaces or other characters in your phone number strings.