I want to replace all birth that I have from EX : 199500 to 1995 so how can I remove all 2 zeros in my column?
I used this:
select P_BIRTH from city.dbo.personsuly replace(P_BIRTH,00, ,);
I want to replace all birth that I have from EX : 199500 to 1995 so how can I remove all 2 zeros in my column?
I used this:
select P_BIRTH from city.dbo.personsuly replace(P_BIRTH,00, ,);