Direct Dataflow¶
This article introduces some SQL elements that will generate direct dataflow.
1. Select¶
1 2 3 |
|
the data of target column "eName"
comes from scott.emp.empName
so we have a direct dataflow like this:
1 |
|
the resultset RS-1 generated by the select list is a relation, which includes columns and rows.
dataflow in XML
1 2 3 4 5 6 7 8 9 10 11 12 13 |
|
The relation
represents a dataflow from source column with id=3
to the target column with id=6
diagram

2. Function¶
During the dataflow analyzing, function
plays a key role. It accepts columns as arguments and generate result which maybe a scalar value or a set value.
1 |
|
A direct dataflow is generated from column salary to the round
function in the above SQL :
1 |
|

dataflow in xml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
|
diagram

if you turn off the show function
setting with /if
option, the result is:

3. References¶
- xml code used in this article is generated by DataFlowAnalyzer tools
- digram used in this article is generated by the Gudu SQLFlow Cloud version