MODIFY COLUMN

ALTER TABLE .. MODIFY COLUMN 语句用于修改已有表上的列,包括列的数据类型和属性。若要同时重命名,可改用 CHANGE COLUMN 语句。

语法图

AlterTableStmt:

AlterTableStmt

AlterTableSpec:

AlterTableSpec

ColumnKeywordOpt:

ColumnKeywordOpt

ColumnDef:

ColumnDef

ColumnPosition:

ColumnPosition

示例

  1. mysql> CREATE TABLE t1 (id int not null primary key auto_increment, col1 INT);
  2. Query OK, 0 rows affected (0.11 sec)
  3. mysql> INSERT INTO t1 (col1) VALUES (1),(2),(3),(4),(5);
  4. Query OK, 5 rows affected (0.02 sec)
  5. Records: 5 Duplicates: 0 Warnings: 0
  6. mysql> ALTER TABLE t1 MODIFY col1 BIGINT;
  7. Query OK, 0 rows affected (0.09 sec)
  8. mysql> SHOW CREATE TABLE t1\G
  9. *************************** 1. row ***************************
  10. Table: t1
  11. Create Table: CREATE TABLE `t1` (
  12. `id` int(11) NOT NULL AUTO_INCREMENT,
  13. `col1` bigint(20) DEFAULT NULL,
  14. PRIMARY KEY (`id`)
  15. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin AUTO_INCREMENT=30001
  16. 1 row in set (0.00 sec)
  17. mysql> ALTER TABLE t1 MODIFY col1 INT;
  18. ERROR 1105 (HY000): unsupported modify column length 11 is less than origin 20
  19. mysql> ALTER TABLE t1 MODIFY col1 BLOB;
  20. ERROR 1105 (HY000): unsupported modify column type 252 not match origin 8
  21. mysql> ALTER TABLE t1 MODIFY col1 BIGINT, MODIFY id BIGINT NOT NULL;
  22. ERROR 1105 (HY000): can't run multi schema change

MySQL 兼容性

  • 目前不支持使用单个 ALTER TABLE 语句进行多个修改。
  • 仅支持特定类型的数据类型更改。例如,支持将 INTEGER 改为 BIGINT,但不支持将 BIGINT 改为 INTEGER。不支持将整数改为字符串格式或 BLOB 格式。

另请参阅