Sie können einfach REPLACE()
:
SELECT REPLACE(t.mobile,'+91','') as mobile
FROM YourTable t
Oder wenn Sie es in der Datenbank ändern möchten:
UPDATE YourTable t
SET t.mobile = REPLACE(t.mobile,'+91','')
Sie können einfach REPLACE()
:
SELECT REPLACE(t.mobile,'+91','') as mobile
FROM YourTable t
Oder wenn Sie es in der Datenbank ändern möchten:
UPDATE YourTable t
SET t.mobile = REPLACE(t.mobile,'+91','')