每次我想从列中删除约束时,都会出现错误。我看不出问题。我正在使用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
有什么问题?