Find Relationship between Oracle tables

0

I would like to know if it is possible to find the tables and fields involved in a relationship in oracle, a query that would return a table as:

  

Table_Name, Column Name, Table_References

     

Official, char_id, Charges

where the Employees table has a field called Char_ID and I would like to know which table comes with this field? finding the complete relationship

    
asked by anonymous 26.03.2018 / 20:27

1 answer

0

I think we already have the solution to your problem right here in the stack overflow take a look:

List of foreign keys and the tables they reference

    
09.10.2018 / 05:39