Try this code. Here I created a table to get the primary key column in oracle called test, and then it asks
create table test ( id int, name varchar2(20), city varchar2(20), phone int, constraint pk_id_name_city primary key (id,name,city) ); 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 = 'TEST' AND cons.constraint_type = 'P' AND cons.constraint_name = cols.constraint_name AND cons.owner = cols.owner ORDER BY cols.table_name, cols.position;
Kobir May 24 '17 at 11:22 2017-05-24 11:22
source share