I have a mySQL table called test:
create table test( locationExpect varchar(120) NOT NULL; );
I want to change the locationExpect colum
This should do it:
ALTER TABLE test MODIFY locationExpert VARCHAR(120)