💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
加快数据的查找速度. 类型有: 普通索引:形式 key(字段名):就是一个索引而已,没有其他作用,只能加快查找速度 唯一索引:形式:unique key(字段名):设定其字段的值不能重复(唯一性) 主键索引:形式:primary key(字段名):自动区分该表任意一行的作用,它比唯一索引多个功能,不能为空 全文索引:形式:fulltext(字段名) 外键索引:形式:foreign key(字段名) references 其他表(对应其他表中的字段名) 查看一个表的索引 show indexes from 表名; 例: ~~~ create table banji( id int auto_increment primary key, banjihao varchar(10) unique key comment ‘班级号’, banzhuren varchar(10) comment ‘班主任’, open_date date comment ‘开班日期’ ); create table xuesheng( stu_id auto_increment primary key, name varchar(10), age tinyint, banji_id int comment ‘班级id’, foreign key (banji_id) references banji(id) ); ~~~