zoukankan      html  css  js  c++  java
  • 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
查看全文
  • 相关阅读:
    大部分人都会做错的经典JS闭包面试题
    20071109 QQ群:ITIL和ITSM 聊天记录,欢迎大家加入QQ群:48132184
    模式窗口window.open造成Session丢失的解决方法
    Server.Transfer 方法如何传递复杂的参数
    小游戏测试你的情商
    VS.Net 开发 MSN一样缓慢出来的提示信息的方法
    Javascript 技巧大全
    ASP.NET 2.0,无刷新页面新境界! 【转】
    ASP.NET AJAX入门系列【转】
    asp.net2.0+ajax开发的无刷新聊天室Demo【转】
  • 原文地址:https://www.cnblogs.com/ldxsuanfa/p/10710127.html
  • Copyright © 2011-2022 走看看