I have a social security like this
602-32-XXXX
xxxx(Security reasons)
I need to get rid off the -
so I run this query
select substr(szsmapp_ssn,1,3)||substr(szsmapp_ssn,5,6)||substr(szsmapp_ssn,8,11)
from szsmapp
and I am getting this result
60232-054XXXX
I need to be able to get only 9 digits...