Możesz po prostu użyć REPLACE()
:
SELECT REPLACE(t.mobile,'+91','') as mobile
FROM YourTable t
Lub jeśli chcesz to zmienić w bazie danych:
UPDATE YourTable t
SET t.mobile = REPLACE(t.mobile,'+91','')
Możesz po prostu użyć REPLACE()
:
SELECT REPLACE(t.mobile,'+91','') as mobile
FROM YourTable t
Lub jeśli chcesz to zmienić w bazie danych:
UPDATE YourTable t
SET t.mobile = REPLACE(t.mobile,'+91','')