All,
I have a populated table with the column ‘SSN‘ as data type INT. Is it is possible to convert the column ‘SSN‘, and the data within the column, to VARCHAR(#)’s.
ALTER TABLE Table1
MODIFY SSN varchar(9);
Will that work?
Thank you!
Any help is appreciated!
You can do a quick test to verify this will preserve the data.
And it never hurts to have backups before doing things like this. Even a quick insert into another table works if it’s not a huge amount of data.