一、字段操作
1、修改字段类型
alter table 表名 modify column 字段名 新字段类型 约束条件;
例: alter table test modify column name varchar(255) default null comment ‘名称’;
2、修改字段名
alter table 表名 change 旧字段名 新字段名 新数据类型 约束条件;
例:alter table test change name title varchar(255) default null comment ‘标题’;
3、添加字段
alter table 表名 add 字段名 字段类型 约束条件;
例:alter table test add age int(11) not null comment ‘年龄’;
3、删除字段
alter table 表名 drop 列名;
例:alter table test drop age;
二、数据库操作
1、查看数据库
show databases;
2、创建数据库
create database 数据库名;
3、使用/切换数据库
use 数据库名;
4、删除数据库
drop database 数据库名;
三、添加索引
1、添加主键索引
alter table 表名 add primary key (字段名);
2、添加唯一索引
alter table 表名 add unique (字段名);
3、添加普通索引(index_name可省略)
alter table 表名 add index index_name (字段名);