程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> Oracle數據庫 >> Oracle教程 >> Oracle中查看建立索引和使用索引的注意點

Oracle中查看建立索引和使用索引的注意點

編輯:Oracle教程

一、查看和建立索引
select * from user_indexes where table_name = 'student'
create index i_student_num on student(num)

二、使用索引的注意點
①類型匹配
若student中num列是varchar類型,語句select * from student where num = 100
該語句被轉化為select * from student where to_number(num) = 100,該列的索引就失效了。

②避免索引列參與計算
索引失效:select * from student where num * 10 > 10000
索引有效:select * from student where num > 10000 / 10

③不要對索引列使用IS NULL或IS NOT NULL
原則上對某一個列建立索引的時候,該列就不應該允許為空。
索引失效:select * from student where num is null

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved