Skip to content

Instantly share code, notes, and snippets.

@PickledDragon
Created October 25, 2015 11:30
Show Gist options
  • Save PickledDragon/dd41f4e72b428175354d to your computer and use it in GitHub Desktop.
Save PickledDragon/dd41f4e72b428175354d to your computer and use it in GitHub Desktop.

Revisions

  1. PickledDragon created this gist Oct 25, 2015.
    11 changes: 11 additions & 0 deletions list-constraints.sql
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,11 @@
    SELECT
    tc.constraint_name, tc.table_name, kcu.column_name,
    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
    JOIN information_schema.constraint_column_usage AS ccu
    ON ccu.constraint_name = tc.constraint_name
    WHERE constraint_type = 'FOREIGN KEY'