Getting Started¶
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.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
|
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?¶
- Sign up a new Gudu account
- Learn how to use SQLFlow
- Read more about Gudu SQLFlow UI
- Install a SQLFlow Server
- Use SQLFlow Java Library
- Analyze your data through Rest API
- Understand the format of exported data as well as check our sample data:
- Oracle Sample
- MSSQL Sample
- MySQL Sample
- PostgreSQL Sample
- Get more details about the data model.