SELECT REPLACE(t.mobile,'+91','') as mobile
FROM YourTable t
または、データベースで変更する場合:
UPDATE YourTable t
SET t.mobile = REPLACE(t.mobile,'+91','')
SELECT REPLACE(t.mobile,'+91','') as mobile
FROM YourTable t
または、データベースで変更する場合:
UPDATE YourTable t
SET t.mobile = REPLACE(t.mobile,'+91','')