Interesting question. You're looking to parse a database schema and data to determine which tables are relevant or should be related to each other, without any strict definition of the relationship. In effect, you're trying to infer a relationship.
I see two ways that you can infer such a relationship. First let me say that your approach might vary depending on the databases you're working with. A number of questions spring to mind (I don't want answers, but they are worth reflecting on)
- are these in-house enterprise systems that follow some consistent naming convention or pattern?
- or are they 'in-the-wild' databases that you come across anywhere, at any time?
- what sort of assumptions are you prepared to make?
- would you prefer to get more false positives or false negatives in your result?
Note that this type of inference will almost certainly give false results, and is built on a lot of assumptions.
So I offer two approachs that I'd use in concert.
Inferring a relationship through structure / naming (symbolic analysis)
Common database design is to name a PK column after the table name (e.g. CustomerId on table Customer), or alternatively name the PK column simply Id.
A table with a FK relationship to another often names its related column the same as the related table. In the Order table I'd expect a CustomerId column which refers to the CustomerId / Id column in the Customer table.
This type of analysis would include
- inspecting columns across tables for similar phrases / words
- looking for columns names that are similar to the names of other tables
- checking for column names that contain the name of other column (e.g.
FirstCustomerId & SecondCustomerId both refer to the CustomerId column in the Customer table)
Inferring a relationship through data (statistical analysis)
Looking at data, as you suggest you have done in your comments, will allow you to determine 'possible' references. If the CustomerId column in the Order table contains values which don't exist in the Id column of the Customer table then it's reasonable to question that this is a valid relationship (although you never know!)
A simple form of data analysis is using dates and times. Rows that were created with close proximity to one another are more likely to be related to one another. If, for every Order row that was created, there also exist between 2 and 5 Item rows created within a few seconds, then a relationship between the two is likely.
A more detailed analysis might look at the range and distribution of used values.
For example, if your Order table has a St_Id column - you might infer using symbolic analysis that the column is likely to relate to either a State table or a Status table. The St_Id column has 6 discrete values, and 90% of the records are covered by 2 values. The State table has 200 rows, and the Status table has 9 rows. You could quite reasonably infer that the St_Id column relates to the Status table - it gives a more greater coverage of the rows of the table (2/3 of the rows are 'used', whereas only 3% of the rows in the State table would be used).
If you perform data analysis on existing databases to gather 'real life data', I'd expect some patterns that could be used as guides to structure inference. When a table with a large number of records has a column with a small number of values repeated many times (not necessarily in order), it's more likely to this column relates to a table with a correspondingly small number of rows.
In summary
Best of luck. It's an interested problem, I've just thrown some ideas out there but this is very much a trial & error, data gathering and performance tuning situation.