MySQL 表操作
2020-04-13 本文已影响0人
RicherYY
完美创建表
drop table if exists 表名;
create table student(
name varchar(20) not null comment '注释',
字段 数据类型(长度) default'默认值',
#例子
age int(2) default 0,
score double(5,2) default null)
engine=InnoDB charset=utf8;
查看表的结构
desc 表名;
给表改名
alter table 原表名 rename as 新表名;
给表添加字段
alter table 表名 add 字段名 数据类型 ……;
修改字段类型
alter table 表名 modify 字段名 数据类型……;
修改字段名
alter table 表名 change 原字段名 新字段名 数据类型……;
删除表中字段
alter table 表名 drop 字段名;