Comment augmenter la taille de la colonne dans SQL

ALTER TABLE table_name
MODIFY column_name
varchar(new_length);
Charming Constrictor