J'ai une table MySQL appelée test:
create table test(
locationExpect varchar(120) NOT NULL;
);
Je souhaite modifier la colonne locationExpect en:
create table test(
locationExpect varchar(120);
);
Comment cela peut-il être fait rapidement?
Voulez-vous dire modifier la table après sa création? Si c'est le cas, vous devez utiliser alter table , en particulier:
ALTER TABLE tablename MODIFY COLUMN new-column-definition
par exemple.
ALTER TABLE test MODIFY COLUMN locationExpect VARCHAR(120);
Syntaxe à changer le nom de la colonne dans MySql:
alter table table_name change old_column_name new_column_name data_type(size);
Exemple:
alter table test change LowSal Low_Sal integer(4);
Cela devrait le faire:
ALTER TABLE test MODIFY locationExpert VARCHAR(120)