索引的应用

1、
https://blog.csdn.net/weixin_32342535/article/details/113296334
2、
https://www.cnblogs.com/bruce1992/p/13958166.html
3、
https://blog.csdn.net/qiannz/article/details/125271012
4、删除索引
http://c.biancheng.net/view/2607.html

5、oracle删除一张表后,索引,同义词,视图,约束会被删除么
https://www.cnblogs.com/houzhiheng/p/15919562.html

6、

7、

8、

9、

10、

11、

-------------------------------------------------------------------------------------------- 下面是测试数据

CREATE TABLE `int_ab` (
  `aid` varchar(1000) DEFAULT NULL,
  `bid` varchar(1000) DEFAULT NULL
) ;

-- 创建索引方法1
-- 中间不要留 中文空格,不知道为什么。
-- int 类型不能指定索引长度,字符串类型可以(如果字符串的长度太长,必须指定索引长度)。
ALTER TABLE int_ab ADD INDEX uiss1(aid(8));
alter table int_ab add index uiss3(aid(71));

-- 创建索引方法2
create index uiss5 on int_ab (aid(28));
create index uiss6 on int_ab (aid);

-- 建表的时候创建索引
CREATE TABLE tableName(
id INT NOT NULL,
rt VARCHAR(500),
INDEX sindee(rt(56))
);


-- 查询索引
SHOW INDEX FROM int_ab;
show index from int_ab;
show index from tableName;

-- 删除索引
drop index uiss3 on int_ab;
drop index uiss1 on int_ab;

drop index uiss5 on int_ab;
drop index uiss6 on int_ab;

drop index sindee on tableName;

--  删除表
drop table tableName;

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