I have a column that is currently varchar(100) and I want to make it 10000.
varchar(100)
10000
is it as simple as
alter table table_name set
use this syntax: alter table table_name modify column col_name varchar (10000);