dblens / app

Database explorer for Mac, Windows & Linux

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Generate ER Diagram

soorajshankar opened this issue · comments

https://github.com/projectstorm/react-diagrams

SELECT
    tc.table_schema, 
    tc.constraint_name, 
    tc.table_name, 
    kcu.column_name, 
    ccu.table_schema AS foreign_table_schema,
    ccu.table_name AS foreign_table_name,
    ccu.column_name AS foreign_column_name 
FROM 
    information_schema.table_constraints AS tc 
    JOIN information_schema.key_column_usage AS kcu
      ON tc.constraint_name = kcu.constraint_name
      AND tc.table_schema = kcu.table_schema
    JOIN information_schema.constraint_column_usage AS ccu
      ON ccu.constraint_name = tc.constraint_name
      AND ccu.table_schema = tc.table_schema;

https://codesandbox.io/s/z0ku7?file=/src/index.js