gpt4 book ai didi

sql - 删除约束时出现错误消息

转载 作者:行者123 更新时间:2023-11-29 12:22:35 26 4
gpt4 key购买 nike

每次我想从列中删除约束时,我都会收到错误消息。我看不出问题所在。我正在使用 postgres。

所以我创建了一个包含两列的表:

CREATE TABLE TableA(
person_id INT PRIMARY KEY,
lastname CHAR(100)
)

我用代码

ALTER TABLE TableA DROP CONSTRAINT person_id

从 person_id 中删除约束,但随后出现错误:

Error : ERROR:  constraint "person_id" of relation "tablea" does not exist

有什么问题?

最佳答案

PostgreSQL 中的主键默认称为 <table>_pkey , 所以你可能想要这样的东西:

ALTER TABLE TableA DROP CONSTRAINT TableA_pkey;

您可以检查名称,例如 psql使用 \d TableA .

关于sql - 删除约束时出现错误消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8779649/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com