最近业务需要给表添加索引,因为数据量很大时,查询效率很低:老大建议使用索引: 之前总结的时候将索引没有记录,当然啦,也怪笔者基础薄弱,不管了,慢慢进步嘛,好了进入正题吧! 首先准备工作,先建两个临时表,后边操作会用到: --建临时学生表 create table temp_student( id number, name ), sex ), age number, class ), userId number ); comment on table temp_student is '临时学生表'…