Answers:
http://dev.mysql.com/doc/refman/5.1/en/alter-table.html
ALTER TABLE tablename MODIFY columnname INTEGER;
这将更改给定列的数据类型
根据您希望修改的列数,最好生成一个脚本或使用某种mysql客户端GUI
如果要将某种类型的所有列更改为另一种类型,则可以使用如下查询生成查询:
select distinct concat('alter table ',
table_name,
' modify ',
column_name,
' <new datatype> ',
if(is_nullable = 'NO', ' NOT ', ''),
' NULL;')
from information_schema.columns
where table_schema = '<your database>'
and column_type = '<old datatype>';
例如,如果要将列从更改tinyint(4)
为bit(1)
,请按以下方式运行它:
select distinct concat('alter table ',
table_name,
' modify ',
column_name,
' bit(1) ',
if(is_nullable = 'NO', ' NOT ', ''),
' NULL;')
from information_schema.columns
where table_schema = 'MyDatabase'
and column_type = 'tinyint(4)';
并得到这样的输出:
alter table table1 modify finished bit(1) NOT NULL;
alter table table2 modify canItBeTrue bit(1) NOT NULL;
alter table table3 modify canBeNull bit(1) NULL;
!! 不保留唯一约束,但应使用另一个if
参数轻松固定到concat
。如果需要,我将留给读者来实现。
您使用该alter table ... change ...
方法,例如:
mysql> create table yar (id int);
Query OK, 0 rows affected (0.01 sec)
mysql> insert into yar values(5);
Query OK, 1 row affected (0.01 sec)
mysql> alter table yar change id id varchar(255);
Query OK, 1 row affected (0.03 sec)
Records: 1 Duplicates: 0 Warnings: 0
mysql> desc yar;
+-------+--------------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+-------+--------------+------+-----+---------+-------+
| id | varchar(255) | YES | | NULL | |
+-------+--------------+------+-----+---------+-------+
1 row in set (0.00 sec)
要更改列数据类型,有更改 方法和修改方法
ALTER TABLE student_info CHANGE roll_no roll_no VARCHAR(255);
ALTER TABLE student_info MODIFY roll_no VARCHAR(255);
要更改字段名称,请使用change方法
ALTER TABLE student_info CHANGE roll_no identity_no VARCHAR(255);
https://dev.mysql.com/doc/refman/8.0/zh-CN/alter-table.html
您还可以为该列设置默认值,只需在其后添加DEFAULT关键字即可。
ALTER TABLE [table_name] MODIFY [column_name] [NEW DATA TYPE] DEFAULT [VALUE];
这也适用于MariaDB(测试版10.2)
ALTER TABLE
即使该列已经包含数据,下面的答案(使用)实际上也会起作用。但是,将float列转换为整数列将导致其中的所有非整数值都四舍五入为最接近的整数。