如何查看表的主键?以及如何添加多个主键?

问题描述

我有下表:https://i.imgur.com/gWyCQxS.png

db name: testdb
table name: testtable

在创建表时,我故意不创建任何主键,因为我想在之后学习如何使用它。

我使用以下命令添加主键:

ALTER TABLE testtable
ADD PRIMARY KEY (column2);

在pgAdmin中,我可以看到它起作用:https://i.imgur.com/3wKsOLo.png

我尝试对column1做同样的操作,但出现此错误ERROR: multiple primary keys for table "testtable" are not allowed sql state: 42P16

问题1:为什么不允许该表具有多个主键,以及如何添加多个主键?

此外,不使用pgAdmin GUI ,我正在尝试查看testtable当前的主键是什么。我在Stackoverflow上找到了一个建议以下代码的线程:

select OBJECT_NAME(OBJECT_ID) AS NameofConstraint
FROM sys.objects
where OBJECT_NAME(parent_object_id)='testtable'
and type_desc LIKE '%CONSTRAINT'

执行以下操作后出现错误ERROR: relation "sys.objects" does not exist

问题2:如何使用psql或不使用pgAdmin GUI查看所有主键?

解决方法

A1:尝试使用如下所示的复合键:

ALTER TABLE testtable
ADD PRIMARY KEY (column1,column2);

A2:(问题2:如何使用psql查看所有主键?)

类似这样的东西:

select tc.table_schema,tc.table_name,kc.column_name
from information_schema.table_constraints tc
  join information_schema.key_column_usage kc 
    on kc.table_name = tc.table_name and kc.table_schema = tc.table_schema and kc.constraint_name = tc.constraint_name
where tc.constraint_type = 'PRIMARY KEY'
  and kc.ordinal_position is not null
order by tc.table_schema,kc.position_in_unique_constraint;