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
I am using mysql and below syntax worked well for me,
ALTER TABLE table_name MODIFY col_name VARCHAR(12);