Bạn chỉ cần sử dụng REPLACE()
:
SELECT REPLACE(t.mobile,'+91','') as mobile
FROM YourTable t
Hoặc nếu bạn muốn thay đổi nó trong cơ sở dữ liệu:
UPDATE YourTable t
SET t.mobile = REPLACE(t.mobile,'+91','')
Bạn chỉ cần sử dụng REPLACE()
:
SELECT REPLACE(t.mobile,'+91','') as mobile
FROM YourTable t
Hoặc nếu bạn muốn thay đổi nó trong cơ sở dữ liệu:
UPDATE YourTable t
SET t.mobile = REPLACE(t.mobile,'+91','')