Mysql
 sql >> Base de données >  >> RDS >> Mysql

Renommer une colonne dans la table mysql sans avoir à répéter sa définition de type

La syntaxe ALTER TABLE ne semble pas offrir une telle possibilité :

ALTER [ONLINE | OFFLINE] [IGNORE] TABLE tbl_name
    [alter_specification [, alter_specification] ...]
    [partition_options]

ALTER [ONLINE | OFFLINE] [IGNORE] TABLE tbl_name
    partition_options

alter_specification:
    table_options
[...]
  | CHANGE [COLUMN] old_col_name new_col_name column_definition
        [FIRST|AFTER col_name]
  | MODIFY [COLUMN] col_name column_definition
        [FIRST | AFTER col_name]
[...]

Plus précisément :