MySQL 索引

/*
索引基本语法
1、索引常见方式一		建表是创建
	create table 表名(
		列1	数据类型	约束,
		列2	数据类型	约束,
		index	索引名(列名(数据类型(长度)))
	)

2、索引创建方式二		建表后创建	使用create
create index 索引名 on 表名(列名(数据类型(长度)))
3、索引创建方式三		建表后创建	使用alter	修改增加
alter table 表名 add index 索引名(列名(数据类型(长度)))、
4、查询索引		show index from 表名;
5、删除	drop index i_name on 表名;


*/

-- 索引创建方式一		建表时创建
create table t_test1(
	id int not null,
	tname varchar(20) not null,
	index i_name(tname)
)

-- 索引创建方式二		建表后创建	使用create

-- 索引创建方式三		建表

-- show index from 表名;
show index from t_test1;

-- 删除
drop index i_name on t_test1;
show index from t_test1;

create unique index i_email on student(email);

-- 查询结果 key 值为索引名  如果key值为null 那么就没索引
explain select * from student stu where stu.email = 'cr@it.com';
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值