##创建普通索引
create index 要定义索引名称 on 表名 (列名1,列名2....);
##查看索引
show index from info;
##删除索引
drop index index_age on info;
例如,我们针对下面这张表,给年龄这列创建一个索引:
create unique index <索引的名字> on tablename(列的列表);
##另种方式:
更改表建构方式创建:alter table 表名 add index 索引名称 (列名);
##第三种方式:可以在创建表的时候直接定义
##在创建新表的时候
creata table tablename ([..],primary key (列的列表));
##在已有的表上设置一个
alter table tablename add primary key (列的列表);
create fulltext index 索引名称 on 表名(列的列表);
create index 索引名称 on 表名 (列的列表1,列的列表2.....);
show index from tablename;
show keys from tablename;
set autocommit=0 :禁止自动提交;
set autocommit=1 :开启自动提交;
select * from user inner join hob on user.hobby=hob.id;
select user.name,hob.name from user inner join hob on user.hobby=hob.id;
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。