Direct Dataflow
https://github.com/sqlparser/sqlflow_public/blob/master/doc/get-started/direct-dataflow.md
This article introduces some SQL elements that will generate direct dataflow.
1. Select
the data of target column "eName"
comes from scott.emp.empName
so we have a direct dataflow like this:
the resultset RS-1 generated by the select list is a relation, which includes columns and rows.
dataflow in XML
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.
A direct dataflow is generated from column salary to the round
function in the above SQL :
dataflow in xml
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
Last updated