- 1、本文档共10页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 5、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 6、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 7、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 8、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
oracle中查询效率优化.doc
Oracle中怎样提高查询效率(sql优化)
一、执行顺序及优化细则
1.表名顺序优化?(1) 基础表放下面,当两表进行关联时数据量少的表的表名放右边表或视图:?Student_info?? (30000条数据)Description_info (30条数据)??select *? from description_info di????? ,student_info???? si --学生信息表where si.student_id = di.lookup_code(+)?? and di.lookup_type(+) = STUDENT_ID??????与????select *? from student_info???? si--学生信息表????? ,description_info diwhere si.student_id = di.lookup_code(+)?? and di.lookup_type(+) = STUDENT_ID???以student_info作为基础表,你会发现运行的速度会有很大的差距。??????(2) 当出现多个表时,关联表被称之为交叉表,交叉表作为基础表select *? from description_info di??? ,description_info di2????? ,student_info???? si --学生信息表where si.student_id = di.lookup_code(+)?? and di.lookup_type(+) = STUDENT_ID?? and si.school_id = di.lookup_code(+)?? and di.lookup_type(+) = SCHOOL_ID与select *? from student_info???? si--学生信息表????? ,description_info di????? ,description_info di2where si.student_id = di.lookup_code(+)?? and di.lookup_type(+) = STUDENT_ID?? and si.school_id = di.lookup_code(+)?? and di.lookup_type(+) = SCHOOL_ID以student_info作为基础表,你会发现运行的速度会有很大的差距,当基础表放在后面,这样的执行速度会明显快很多。
2.where执行顺序where执行会从至下往上执行select *from student_info si --学生信息表where si.school_id=10 --学院IDand? si.system_id=100--系ID摆放where子句时,把能过滤大量数据的条件放在最下边
3. is null 和is not null当要过滤列为空数据或不为空的数据时使用select *from student_info si --学生信息表where si.school_id is null(当前列中的null为少数时用is not null,否则is null)
4.使用表别名当查询时出现多个表时,查询时加上别名,避免出现减少解析的时间字段歧义引起的语法错误。
5. where执行速度比having快尽可能的使用where代替havingselect? from student_info sigroup by si.student_idhaving si.system_id!=100? and si.school_id!=10(select? from student_info siwehre si.system_id!=100and si.school_id!=10group by si.student_id)????6.? * 号引起的执行效率尽量减少使用select * 来进行查询,当你查询使用*,数据库会进行解析并将*转换为全部列。
二、替代优化1、用=替代?select ui.user_name? from user_info ui--员工信息表? where ui.student_id=10? 与? select ui.user_name? from user_info ui--员工信息表? where ui.student_id9? 执行时=会比执行得要快???2、用UNION替换OR (适用于索引列)?select ui.user_name? from user_info ui--员工信
文档评论(0)