本月博客排行
-
第1名
龙儿筝 -
第2名
lerf -
第3名
fantaxy025025 - johnsmith9th
- zysnba
- xiangjie88
年度博客排行
-
第1名
青否云后端云 -
第2名
宏天软件 -
第3名
gashero - wy_19921005
- vipbooks
- benladeng5225
- e_e
- wallimn
- javashop
- ranbuijj
- fantaxy025025
- jickcai
- zw7534313
- qepwqnp
- 解宜然
- 龙儿筝
- ssydxa219
- zysnba
- sam123456gz
- sichunli_030
- arpenker
- tanling8334
- kaizi1992
- gaojingsong
- xpenxpen
- jh108020
- wiseboyloves
- ganxueyun
- xyuma
- xiangjie88
- wangchen.ily
- Jameslyy
- luxurioust
- lemonhandsome
- mengjichen
- jbosscn
- zxq_2017
- lzyfn123
- nychen2000
- forestqqqq
- wjianwei666
- zhanjia
- ajinn
- Xeden
- hanbaohong
- java-007
- 喧嚣求静
- kingwell.leng
- mwhgJava
- lich0079
最新文章列表
《Pro Oracle SQL》10.3 Recursive Subqueries
Recursive Subqueries 递归子查询
New to Oracle 11.2 is recursive subquery factoring
(RSF
for the remainder of this chapter). As you can
probably guess, the ANSI name for this feature is recur ...
《Pro Oracle SQL》Chapter 10.2.5 Applying Subquery Factoring to PL/SQL
Applying Subquery Factoring to PL/SQL 在PL/SQL中运用子查询分解
Even PL/SQL can present golden opportunities for optimization using subquery factoring. Something
that most of us have done at one time ...
《Pro Oracle SQL》 10.2.4 Seizing Other Optimization Opportunities
10.2.4 Seizing Other Optimization Opportunities 掌握其他的优化机会
There are other opportunities where subquery factoring may be used to your advantage. If you are
working on applications that were ...
《Pro Oracle SQL》Chapter10.2.3 Testing the Effects of Query Changes
Testing the Effects of Query Changes 测试查询改变的效果 (page 315)
Even as data does not remain static, SQL is not always static.
Sometimes requirements change, so code m ...
《Pro Oracle SQL》Chapter 10.2.2 Testing Over Multiple Executions
Testing Over Multiple Executions 测试多个执行
(page 312)
What would happen if each query were run multiple times simultaneously from several different
database sessions? Using a modified version ...
《Pro Oracle SQL》Chapter10 -- 10.2 Optimizing SQL -10.2.1Testing Execution Plans
10.2 Optimizing SQL 优化SQL
(page 308)
When a SQL query is designed or modified to take advantage of subquery factoring, there are some not-so-subtle
changes that may take place when the ...
《Pro Oracle SQL》Chapter 10 Subquery Factoring --10.1 Standard Usage
Subquery Factoring 子查询分解
(page 305)
Jared Still
You may not be familiar with the term subquery factoring . Prior to the release of Oracle 11gR2, the
official Oracle documentation barely ...
《Pro Oracle SQL》Chapter 9 -- 9.11 Subquery Factoring
Subquery Factoring 子查询分解
(page 303)
In a business setting, requirements are complex and multiple levels of aggregation are often needed.
When writing complex queries, you can often com ...
《Pro Oracle SQL》CHAPTER 9 -- 9.10Performance Tuning with the Model Clause
Performance Tuning with the Model Clause Model子句的性能调优
(page 293)
As with all SQL, sometimes you need to tune statements using the Model clause. To that end, it helps to ...
《Pro Oracle SQL》CHAPTER 9 The Model Clause -- 9.9 NULLs
NULLs
(page 291)
In SQL statements using Model SQL, values can be null for two reasons: null values in the existing
cells and references to non-existent cells. I will discuss the later sce ...
《Pro Oracle SQL》CHAPTER 9 The Model Clause -- 9.8 Lookup Tables
Lookup Tables 查找表
(page 290)
You can define a lookup table and refer to that lookup table in the rules section. Such a lookup table is
sometimes termed a reference table . Reference tabl ...
《Pro Oracle SQL》CHAPTER 9 The Model Clause -- 9.7 Iteration
Iteration 迭代
(page 287)
Iteration provides another facility to implementing complex business requirements using a concise
Model SQL statement. A block of rules can be executed in a loop ...
《Pro Oracle SQL》CHAPTER 9 The Model Clause -- 9.6 Aggregation
Aggregation 聚合
(page 285)
Data aggregation is commonly used in the data warehouse queries. The Model clause provides the
ability to aggregate the data using aggregate functi ...
《Pro Oracle SQL》CHAPTER 9 The Model Clause -- 9.5 Evaluation Order
Evaluation Order 求值顺序
(page 282)
Multiple rules can be specified in the rules section, and the rules can be specified with dependencies betweene them. The rule evaluation sequence can a ...
《Pro Oracle SQL》CHAPTER 9 The Model Clause -- 9.4Returning Updated Rows
Returning Updated Rows 返回更新的行
(page 280)
In Listing 9-7, just four rows were returned even though there are rows for other weeks. The clause
RETURN UPDATED ROWS controls this behavio ...
《Pro Oracle SQL》CHAPTER 9 The Model Clause -- 9.3 Positional and Symbolic Refere
Positional and Symbolic References 位置和符号引用
(page 277)
As discussed previously, the CV function provides the ability to refer to a single cell. It is also possible
to refer to an indi ...
《Pro Oracle SQL》CHAPTER 9 -- 9.2 Inter-Row Referencing via the Model clause
I
nter-Row Referencing via the Model clause 用Model子句行间引用
(page 274)
In a conventional SQL statement, emulating the spreadsheet described in Listing 9-1 is achieved by a
multitude of self-j ...
《Pro Oracle SQL》CHAPTER 9 The Model Clause -- 9.1 Spreadsheets
The Model Clause Model子句
(page 273)
Riyaj Shamsudeen
The Model clause introduced in the Oracle Database version 10g provides an elegant method to
replace the spreadsheet. ...
《Pro Oracle SQL》Chapter3 -- 3.3.5 Outer Joins
Outer Joins 外连接
(page 120)
An outer join returns all rows from one table and only those rows from the joined table where the join
condition is met.
Oracle uses the + character ...
《Pro Oracle SQL》Chapter 3 -- 3.3.4 Cartesian Joins
Cartesian Joins 笛卡尔连接
(page 118)
Cartesian joins occur when all the rows from one table are joined to all the rows of another table. Therefore, the total number of rows resulting from ...