支持的版本: 当前 (17) / 16 / 15 / 14 / 13
开发版本: devel
不支持的版本: 12 / 11 / 10 / 9.6 / 9.5 / 9.4 / 9.3 / 9.2 / 9.1 / 9.0 / 8.4 / 8.3 / 8.2 / 8.1 / 8.0 / 7.4 / 7.3 / 7.2

3.3. 外键 #

回想一下weathercities表,它们来自第 2 章。考虑以下问题:您想确保没有人可以在weather表中插入在cities表中没有匹配条目的行。这被称为维护数据的参照完整性。在简单的数据库系统中,这将通过首先查看cities表以检查是否存在匹配记录,然后插入或拒绝新的weather记录来实现(如果可以实现的话)。这种方法存在许多问题,并且非常不方便,因此PostgreSQL可以为您完成此操作。

表的新的声明看起来会像这样

CREATE TABLE cities (
        name     varchar(80) primary key,
        location point
);

CREATE TABLE weather (
        city      varchar(80) references cities(name),
        temp_lo   int,
        temp_hi   int,
        prcp      real,
        date      date
);

现在尝试插入无效记录

INSERT INTO weather VALUES ('Berkeley', 45, 53, 0.0, '1994-11-28');
ERROR:  insert or update on table "weather" violates foreign key constraint "weather_city_fkey"
DETAIL:  Key (city)=(Berkeley) is not present in table "cities".

可以根据您的应用程序微调外键的行为。在本教程中,我们不会超出这个简单的示例,但只需参考第 5 章以获取更多信息。正确使用外键肯定会提高您的数据库应用程序的质量,因此强烈建议您了解它们。

提交更正

如果您在文档中发现任何不正确、与您对特定功能的体验不符或需要进一步澄清的内容,请使用此表单来报告文档问题。