How to get primary key column in Oracle?

后端 未结 5 1733
悲哀的现实
悲哀的现实 2020-11-29 17:12

I need to get the name of the primary key column.

In the input, I only have the table name.

5条回答
  •  既然无缘
    2020-11-29 17:38

    Try This Code Here I created a table for get primary key column in oracle which is called test and then query

    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;
    

提交回复
热议问题