Skip to content

Instantly share code, notes, and snippets.

@justlaputa
Created April 11, 2014 09:24
Show Gist options
  • Save justlaputa/10453055 to your computer and use it in GitHub Desktop.
Save justlaputa/10453055 to your computer and use it in GitHub Desktop.
find primary key of table
SELECT
cols.table_name,
cols.column_name,
cols.position,
cons.status,
cons.owner
FROM all_constraints cons,
all_cons_columns cols
WHERE cols.table_name = 'TABLE_NAME'
AND cons.constraint_type = 'P'
AND cons.constraint_name = cols.constraint_name
AND cons.owner = cols.owner
ORDER BY cols.table_name, cols.position;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment