⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 outerjoin.out

📁 derby database source code.good for you.
💻 OUT
📖 第 1 页 / 共 5 页
字号:
	Nested Loop Join ResultSet:	Number of opens = 1	Rows seen from the left = 1	Rows seen from the right = 1	Rows filtered = 0	Rows returned = 1		constructor time (milliseconds) = 0		open time (milliseconds) = 0		next time (milliseconds) = 0		close time (milliseconds) = 0	Left result set:		Project-Restrict ResultSet (3):		Number of opens = 1		Rows seen = 3		Rows filtered = 2		restriction = true		projection = false			constructor time (milliseconds) = 0			open time (milliseconds) = 0			next time (milliseconds) = 0			close time (milliseconds) = 0			restriction time (milliseconds) = 0			projection time (milliseconds) = 0		Source result set:			Table Scan ResultSet for TT2 at read committed isolation level using instantaneous share row locking chosen by the optimizer			Number of opens = 1			Rows seen = 3			Rows filtered = 0			Fetch Size = 16				constructor time (milliseconds) = 0				open time (milliseconds) = 0				next time (milliseconds) = 0				close time (milliseconds) = 0				next time in milliseconds/row = 0			scan information: 				Bit set of columns fetched=All				Number of columns fetched=3				Number of pages visited=1				Number of rows qualified=3				Number of rows visited=8				Scan type=heap				start position: null				stop position: null				qualifiers:None	Right result set:		Table Scan ResultSet for TT1 at read committed isolation level using instantaneous share row locking chosen by the optimizer		Number of opens = 1		Rows seen = 1		Rows filtered = 0		Fetch Size = 16			constructor time (milliseconds) = 0			open time (milliseconds) = 0			next time (milliseconds) = 0			close time (milliseconds) = 0			next time in milliseconds/row = 0		scan information: 			Bit set of columns fetched=All			Number of columns fetched=3			Number of pages visited=1			Number of rows qualified=1			Number of rows visited=8			Scan type=heap			start position: null			stop position: null			qualifiers:Column[0][0] Id: 0Operator: =Ordered nulls: falseUnknown return value: falseNegate comparison result: falseij> select * from tt2 right outer join tt1 on tt1.c1 = tt2.c2 where tt2.c1 + 1= 3;C1         |C2         |C3         |C1         |C2         |C3         -----------------------------------------------------------------------2          |3          |4          |3          |4          |5          ij> values SYSCS_UTIL.SYSCS_GET_RUNTIMESTATISTICS();1                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------Statement Name: 	nullStatement Text: 	select * from tt2 right outer join tt1 on tt1.c1 = tt2.c2 where tt2.c1 + 1= 3Parse Time: 0Bind Time: 0Optimize Time: 0Generate Time: 0Compile Time: 0Execute Time: 0Begin Compilation Timestamp : nullEnd Compilation Timestamp : nullBegin Execution Timestamp : nullEnd Execution Timestamp : nullStatement Execution Plan Text: Nested Loop Join ResultSet:Number of opens = 1Rows seen from the left = 1Rows seen from the right = 1Rows filtered = 0Rows returned = 1	constructor time (milliseconds) = 0	open time (milliseconds) = 0	next time (milliseconds) = 0	close time (milliseconds) = 0Left result set:	Project-Restrict ResultSet (3):	Number of opens = 1	Rows seen = 3	Rows filtered = 2	restriction = true	projection = false		constructor time (milliseconds) = 0		open time (milliseconds) = 0		next time (milliseconds) = 0		close time (milliseconds) = 0		restriction time (milliseconds) = 0		projection time (milliseconds) = 0	Source result set:		Table Scan ResultSet for TT2 at read committed isolation level using instantaneous share row locking chosen by the optimizer		Number of opens = 1		Rows seen = 3		Rows filtered = 0		Fetch Size = 16			constructor time (milliseconds) = 0			open time (milliseconds) = 0			next time (milliseconds) = 0			close time (milliseconds) = 0			next time in milliseconds/row = 0		scan information: 			Bit set of columns fetched=All			Number of columns fetched=3			Number of pages visited=1			Number of rows qualified=3			Number of rows visited=8			Scan type=heap			start position: null			stop position: null			qualifiers:NoneRight result set:	Table Scan ResultSet for TT1 at read committed isolation level using instantaneous share row locking chosen by the optimizer	Number of opens = 1	Rows seen = 1	Rows filtered = 0	Fetch Size = 16		constructor time (milliseconds) = 0		open time (milliseconds) = 0		next time (milliseconds) = 0		close time (milliseconds) = 0		next time in milliseconds/row = 0	scan information: 		Bit set of columns fetched=All		Number of columns fetched=3		Number of pages visited=1		Number of rows qualified=1		Number of rows visited=8		Scan type=heap		start position: null		stop position: null		qualifiers:Column[0][0] Id: 0Operator: =Ordered nulls: falseUnknown return value: falseNegate comparison result: falseij> select * from tt1 left outer join tt2 on tt1.c1 = tt2.c2 left outer join tt3 on tt2.c2 = tt3.c3 where tt3.c3 = 3;C1         |C2         |C3         |C1         |C2         |C3         |C1         |C2         |C3         -----------------------------------------------------------------------------------------------------------3          |4          |5          |2          |3          |4          |1          |2          |3          ij> values SYSCS_UTIL.SYSCS_GET_RUNTIMESTATISTICS();1                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------Statement Name: 	nullStatement Text: 	select * from tt1 left outer join tt2 on tt1.c1 = tt2.c2 left outer join tt3 on tt2.c2 = tt3.c3 where tt3.c3 = 3Parse Time: 0Bind Time: 0Optimize Time: 0Generate Time: 0Compile Time: 0Execute Time: 0Begin Compilation Timestamp : nullEnd Compilation Timestamp : nullBegin Execution Timestamp : nullEnd Execution Timestamp : nullStatement Execution Plan Text: Project-Restrict ResultSet (7):Number of opens = 1Rows seen = 1Rows filtered = 0restriction = falseprojection = true	constructor time (milliseconds) = 0	open time (milliseconds) = 0	next time (milliseconds) = 0	close time (milliseconds) = 0	restriction time (milliseconds) = 0	projection time (milliseconds) = 0Source result set:	Nested Loop Join ResultSet:	Number of opens = 1	Rows seen from the left = 1	Rows seen from the right = 1	Rows filtered = 0	Rows returned = 1		constructor time (milliseconds) = 0		open time (milliseconds) = 0		next time (milliseconds) = 0		close time (milliseconds) = 0	Left result set:		Table Scan ResultSet for TT3 at read committed isolation level using instantaneous share row locking chosen by the optimizer		Number of opens = 1		Rows seen = 1		Rows filtered = 0		Fetch Size = 16			constructor time (milliseconds) = 0			open time (milliseconds) = 0			next time (milliseconds) = 0			close time (milliseconds) = 0			next time in milliseconds/row = 0		scan information: 			Bit set of columns fetched=All			Number of columns fetched=3			Number of pages visited=1			Number of rows qualified=1			Number of rows visited=8			Scan type=heap			start position: null			stop position: null			qualifiers:Column[0][0] Id: 2Operator: =Ordered nulls: falseUnknown return value: falseNegate comparison result: false	Right result set:		Project-Restrict ResultSet (6):		Number of opens = 1		Rows seen = 3		Rows filtered = 2		restriction = true		projection = false			constructor time (milliseconds) = 0			open time (milliseconds) = 0			next time (milliseconds) = 0			close time (milliseconds) = 0			restriction time (milliseconds) = 0			projection time (milliseconds) = 0		Source result set:			Hash Left Outer Join ResultSet:			Number of opens = 1			Rows seen from the left = 3			Rows seen from the right = 2			Empty right rows returned = 0			Rows filtered = 0			Rows returned = 3				constructor time (milliseconds) = 0				open time (milliseconds) = 0				next time (milliseconds) = 0				close time (milliseconds) = 0			Left result set:				Table Scan ResultSet for TT1 at read committed isolation level using instantaneous share row locking chosen by the optimizer				Number of opens = 1				Rows seen = 3				Rows filtered = 0				Fetch Size = 16					constructor time (milliseconds) = 0					open time (milliseconds) = 0					next time (milliseconds) = 0					close time (milliseconds) = 0					next time in milliseconds/row = 0				scan information: 					Bit set of columns fetched=All					Number of columns fetched=3					Number of pages visited=1					Number of rows qualified=3					Number of rows visited=8					Scan type=heap					start position: null					stop position: null					qualifiers:None			Right result set:				Hash Scan ResultSet for TT2 at read committed isolation level using instantaneous share row locking: 				Number of opens = 3				Hash table size = 3				Hash key is column number 1				Rows seen = 2				Rows filtered = 0					constructor time (milliseconds) = 0					open time (milliseconds) = 0					next time (milliseconds) = 0					close time (milliseconds) = 0					next time in milliseconds/row = 0				scan information: 

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -