I have some data stored in a database with the following schema
table1, field1, table2, field2
This shows how table 1 relates to table 2 via the field value. I’d like to turn this into a diagram that shows how each of these tables are related to each (i.e. an ER diagram). For example, using the above record, you would have two boxes, one labeled table1, the other labeled table2, and they are connected via two lines labeled field1 and field2. Is there any python package that can accomplish this?
Thanks