In MySQL, I have a column that is presently in varchar(100) type and I need to make it 10000.
Is it as easy like:
alter table table_name set column col_name varchar (10000);
I am scared to corrupt the existing data. Will it be ok if I execute this query? Or should I do alter the column another way?