• 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
  • 相关阅读:
    .NET体系结构
    命名空间和程序集
    网站不加www和.com 也能访问的设置
    如何从本机直接复制粘贴文件到服务器
    无法访问已释放的对象。 对象名:“System.ServiceModel.Channels.HttpChannelFactory+HttpRequestChannel”。
    silverlight 数据库更新,UI控件同步更新
    Apache Solr使用自定义QParser后同义词扩展及Token去重的感悟
    Apache Nutch 1.3 学习笔记十(插件机制分析)
    Apache Nutch 1.3 学习笔记十(Ntuch 插件机制简单介绍)
    Apache Nutch 1.3 学习笔记八(LinkDb)
  • 原文地址:https://www.cnblogs.com/ldxsuanfa/p/10710127.html
  • Copyright © 2020-2023  润新知