关于index 索引

index :
索引:建立索引的目的是提高数据查询的速度。
1:建立索引 index
eg:对birthday 字段经常进行查询操作,可以考虑在该字段上建立 index 。
create index t_stutdent_index on t_student(birthday);
create index 索引名 on 表名(字段);
 
删除索引
 
drop index 索引名。
posted @ 2018-03-26 23:21  青蛙跳跳  阅读(101)  评论(0)    收藏  举报