Getting Started
https://www.sqlflow.cn/gudu-sqlflow-introduction
Let's analyze the following SQL statements to see how to get the data dependencies between tables/views.
Tips:
You need to have basic SQL knowledge to understand this doc.
No data lineage knowledge is required before you start this doc. You can simply consider data lineage as the data relationship between tables in database.
Data of the table deptsal
come from the table dept
and the table emp
. More specifically, following data lineage relationship can be deduced:
deptsal.dept_no
field comes fromdept.deptno
deptsal.dept_name
field comes fromdept.name
deptsal.salary
field comes fromemp.sal
andemp.comm
Through Gudu SQLFlow, we can visualize the above data lineage as:
What's next?
Learn how to use SQLFlow
Read more about Gudu SQLFlow UI
Install a SQLFlow Server
Analyze your data through Rest API
Understand the format of exported data as well as check our sample data:
Get more details about the data model.
Last updated