Mysql修改字段名和修改字段类型的实例代码
吾爱主题
阅读:135
2024-04-01 23:25:39
评论:0
1、修改字段类型、字段名、字段注释、类型长度、字段默认值
?1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | mysql修改字段类型: --能修改字段类型、类型长度、默认值、注释 --对某字段进行修改 ALTER TABLE 表名 MODIFY [ COLUMN ] 字段名 新数据类型 新类型长度 新默认值 新注释; -- COLUMN关键字可以省略不写 alter table table1 modify column column1 decimal (10,1) DEFAULT NULL COMMENT '注释' ; -- 正常,能修改字段类型、类型长度、默认值、注释 alter table table1 modify column1 decimal (10,2) DEFAULT NULL COMMENT '注释' ; -- 正常,能修改字段类型、类型长度、默认值、注释 mysql修改字段名: ALTER TABLE 表名 CHANGE [ column ] 旧字段名 新字段名 新数据类型; alter table table1 change column1 column1 varchar (100) DEFAULT 1.2 COMMENT '注释' ; -- 正常,此时字段名称没有改变,能修改字段类型、类型长度、默认值、注释 alter table table1 change column1 column2 decimal (10,1) DEFAULT NULL COMMENT '注释' -- 正常,能修改字段名、字段类型、类型长度、默认值、注释 alter table table1 change column2 column1 decimal (10,1) DEFAULT NULL COMMENT '注释' -- 正常,能修改字段名、字段类型、类型长度、默认值、注释 alter table table1 change column1 column2; -- 报错 mysql> alter table white_user change column name nick_name varchar (50) null comment '昵称' ; -- 正确 Query OK, 0 rows affected (0.02 sec) Records: 0 Duplicates: 0 Warnings: 0 |
2、修改表名
?1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | ALTER TABLE 旧表名 RENAME TO 新表名 ; mysql> show tables ; + -------------------+ | Tables_in_db_test | + -------------------+ | white_user | + -------------------+ 1 row in set (0.00 sec) mysql> alter table white_user rename to white_user_new ; Query OK, 0 rows affected (0.00 sec) mysql> show tables ; + -------------------+ | Tables_in_db_test | + -------------------+ | white_user_new | + -------------------+ 1 row in set (0.00 sec) |
3、修改表的注释
?1 2 3 4 5 6 7 8 9 10 11 12 13 14 | ALTER TABLE 表名 COMMENT '新注释' mysql> alter table white_user_new comment '新表-白名单表' ; Query OK, 0 rows affected (0.01 sec) Records: 0 Duplicates: 0 Warnings: 0 mysql> show create table white_user_new ; CREATE TABLE `white_user_new` ( `id` bigint (20) NOT NULL AUTO_INCREMENT COMMENT 'ID' , ` name ` varchar (50) NOT NULL COMMENT '姓名' , `created_time` datetime DEFAULT NULL COMMENT '创建时间' , `updated_time` datetime DEFAULT NULL COMMENT '更新时间' , PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COMMENT= '新表-白名单表' |
4、在指定位置插入新字段
?1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | ALTER TABLE 表名 ADD [ COLUMN ] 字段名 字段类型 是否可为空 COMMENT '注释' AFTER 指定某字段 ; --COLUMN关键字可以省略不写 mysql> alter table white_user_new add column erp varchar (50) not null comment 'erp账号' after name ; Query OK, 0 rows affected (0.03 sec) Records: 0 Duplicates: 0 Warnings: 0 --在name字段后面添加erp字段 mysql> show create table white_user_new ; CREATE TABLE `white_user_new` ( `id` bigint (20) NOT NULL AUTO_INCREMENT COMMENT 'ID' , ` name ` varchar (50) NOT NULL COMMENT '姓名' , `erp` varchar (50) NOT NULL COMMENT 'erp账号' , `created_time` datetime DEFAULT NULL COMMENT '创建时间' , `updated_time` datetime DEFAULT NULL COMMENT '更新时间' , PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COMMENT= '新表-白名单表' mysql> alter table white_user_new add position varchar (50) not null comment '岗位' after name ; Query OK, 0 rows affected (0.02 sec) Records: 0 Duplicates: 0 Warnings: 0 --在name字段后面添加position字段。 mysql> show create table white_user_new ; CREATE TABLE `white_user_new` ( `id` bigint (20) NOT NULL AUTO_INCREMENT COMMENT 'ID' , ` name ` varchar (50) NOT NULL COMMENT '姓名' , `position` varchar (50) NOT NULL COMMENT '岗位' , `erp` varchar (50) NOT NULL COMMENT 'erp账号' , `created_time` datetime DEFAULT NULL COMMENT '创建时间' , `updated_time` datetime DEFAULT NULL COMMENT '更新时间' , PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COMMENT= '新表-白名单表' mysql> alter table white_user_new add mobile varchar (50) not null comment '手机号码' before position ; --报错,在position字段前添加mobile字段,不能使用before关键字 |
5、删除字段
?1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | ALTER TABLE 表名 DROP [ COLUMN ] 字段名 ; --COLUMN关键字可以省略不写 mysql> alter table white_user_new drop column position ; Query OK, 0 rows affected (0.02 sec) Records: 0 Duplicates: 0 Warnings: 0 mysql> alter table white_user_new drop erp ; Query OK, 0 rows affected (0.02 sec) Records: 0 Duplicates: 0 Warnings: 0 mysql> show create table white_user_new ; CREATE TABLE `white_user_new` ( `id` bigint (20) NOT NULL AUTO_INCREMENT COMMENT 'ID' , ` name ` varchar (50) NOT NULL COMMENT '姓名' , `created_time` datetime DEFAULT NULL COMMENT '创建时间' , `updated_time` datetime DEFAULT NULL COMMENT '更新时间' , PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COMMENT= '新表-白名单表' |
总结
到此这篇关于Mysql修改字段名和修改字段类型的文章就介绍到这了,更多相关Mysql修改字段名和字段类型内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!
原文链接:https://programskills.blog.csdn.net/article/details/79354136
声明
1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。