一、字段
1、添加字段:
alter table `product` add `inventory` int(11) NOT NULL COMMENT '库存'
添加多个字段:加括号,逗号分隔
alter table `category` add (
`company` tinyint(4) NOT NULL COMMENT '公司',
`date` varchar(40) NOT NULL COMMENT '日期',
`number` varchar(200) NOT NULL COMMENT '数量'
)
2、删除字段:
alter table `category` drop column `date`
删除多个字段:逗号分隔
alter table `category` drop column `date`,drop column `number`
3、修改字段属性:
示例:将 award 表的 count 字段,名称修改为 company,并设置相关属性
alter table `award` change `count` `company` varchar(200) not null comment '公司'
二、索引
1、 添加索引字段
主键索引:primary key
alter table `award` add primary key (`id`);
普通索引:index
alter table `award` add index `key_a_c` (`award`,`count`);
全文索引:fulltext
alter table `award` add fulltext `key_a_c` (`award`,`count`);
唯一索引:unique
alter table `award` add unique `key_a_c` (`award`,`count`);
2、删除索引:
alter table `award` drop primary key `id`
alter table `award` drop index `key_a_c`
alter table `award` drop fulltext `key_a_c`
alter table `award` drop unique `key_a_c`
3、显示所有索引
show index from `award`;