Reputation: 11
I am working on apache superset,but I am not knowing how to retrieve data from two tables on a chart
Upvotes: 1
Views: 1560
Reputation: 681
Option 1: Join your two tables at the DB level and save it as a view or a materialised view. Then add the view as a dataset to superset.
Option 2: Go to SQL lab in Superset and join your tables and save as a virtual dataset. This is similar to a view on the DB.
Upvotes: 1