时间:2021-07-01 10:21:17 帮助过:3人阅读
2.查询所有数据表
>show tables;
3.查询表的字段信息
>desc 表名称;
4.1添加表字段
alter table table1 add transactor varchar(10) not Null;
alter table table1 add id int unsigned not Null auto_increment primary key
4.2.修改某个表的字段类型及指定为空或非空
>alter table 表名 change 字段名 字段名 字段类型 [是否允许非空];
>alter table 表名 modify 字段名 字段类型 [是否允许非空];
>alter table 表名 modify 字段名 字段类型 [是否允许非空];
4.3.修改某个表的字段名称及指定为空或非空
>alter table 表名 change 字段原名称 字段新名称 字段类型 [是否允许非空
4.4如果要删除某一字段,可用命令:ALTER TABLE 表名 DROP 字段名;
MySQL添加字段和修改字段的方法
标签:incr 指定 数据表 esc 修改 mod char nbsp cto