PHP速学视频免费教程(入门到精通)
PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!
在oracle中,可以利用“drop index”语句删除索引,该语句的作用就是删除指定的索引,语法为“drop index 索引名;”。
本教程操作环境:Windows10系统、Oracle 11g版、Dell G3电脑。
drop index index_name;
1、创建索引
create index 索引名 on 表名(列名);
2、删除索引
drop index 索引名;
3、创建组合索引
create index 索引名 on 表名(列名1,,列名2);
4、查询索引
--根据索引名,查询表索引字段 select * from user_ind_columns where index_name='索引名'; --根据表名,查询一张表的索引 select * from user_indexes where table_name='表名';
推荐教程:《Oracle教程》
已抢6717个
抢已抢90861个
抢已抢14323个
抢已抢50399个
抢已抢189616个
抢已抢86052个
抢