Home > Database > Mysql Tutorial > body text

Oracle 子查询因子化 浅谈(with的使用)

WBOY
Release: 2016-06-07 16:33:40
Original
1057 people have browsed it

近来学习Oracle,想要提高自己所写语句的效率和易读性,今天的笔记是关于子查询因子话这么一个东西

近来学习Oracle,想要提高自己所写语句的效率和易读性,,今天的笔记是关于子查询因子话这么一个东西

因子化的查询不一定可以提高效率,但是一定可以再提高程序的可读性方面成效显著


--with 语句

with sales_c (

        select sales,e_NO,e_name from emplyee

)

select * from sales_c;

--查询的结果就是( select sales,e_NO,e_name from emplyee)这张字表中的内容

--with一次声明,在下面的例子中可以随意的使用,提升了代码的可读性

 

--例如

with sales_c (

        select sales,e_NO,e_name from emplyee

),

    name_c(

      select sales,e_name from sales_c

)

select * from sales_c,name_c;

--读起来确实很方便

原理:Oracle会把with query_name的这个query_name作为一个临时表或者视图固化下来,提升查询的效率

本文永久更新链接地址:

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template