mysql索引的简单使用

mysql索引的简单使用_第1张图片
mysql索引的简单使用_第2张图片
删除 goods 表中的 goods_desc 字段及货号字段,并增加 click_count 字段
mysql索引的简单使用_第3张图片
在 goods_``name 列上加唯一性索引(用alter table方式)

alter table add unique index uniqididx(goods_name);

去查看索引
mysql索引的简单使用_第4张图片
发现有goods_name的唯一索引
在 shop_price 列上加普通索引(用create index方式)
创建名为priceindex的普通索引

create index priceindex on goods(shop_price);

mysql索引的简单使用_第5张图片
在 click_count 上增加普通索引,然后再删除 (分别使用drop index和alter table删除)
mysql索引的简单使用_第6张图片
drop index删除

drop index count_index on goods;

alter table 删除

alter table goods drop index count_index;

你可能感兴趣的:(mysql,数据库)