当前位置: 代码迷 >> Oracle管理 >> 简单的难题!欢迎踊跃交流,该怎么解决
  详细解决方案

简单的难题!欢迎踊跃交流,该怎么解决

热度:98   发布时间:2016-04-24 05:23:39.0
简单的难题!?!?欢迎踊跃交流
有A表(seq,name,sex)共有8万条数据,seq是序列
情况一:没有索引
select * from A where seq=1;
select * from A where seq=1000;
select * from A where seq=10000;
以上3条语句速度哪个最快?

情况二:有索引
select * from A where seq=1;
select * from A where seq=1000;
select * from A where seq=10000;
以上3条语句速度哪个最快?


------解决方案--------------------
这个应该速度都是一样的吧。
  相关解决方案