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
For me worked this one:
ALTER TABLE tablename MODIFY fieldname VARCHAR(128) NOT NULL;