U kunt eenvoudig REPLACE()
:
SELECT REPLACE(t.mobile,'+91','') as mobile
FROM YourTable t
Of als u het in de database wilt wijzigen:
UPDATE YourTable t
SET t.mobile = REPLACE(t.mobile,'+91','')
U kunt eenvoudig REPLACE()
:
SELECT REPLACE(t.mobile,'+91','') as mobile
FROM YourTable t
Of als u het in de database wilt wijzigen:
UPDATE YourTable t
SET t.mobile = REPLACE(t.mobile,'+91','')