PostgreSQL,MonetDB和MySQL将外键添加到现有表中

时间:2018-03-18 00:39:08

标签: mysql sql database postgresql monetdb

当我将一个外键添加到已有数据的表时,每个数据库管理系统都会做什么?

他们是否分析列的每个值以确认它是来自引用的表主键的值?

或者他们是否有其他优化机制?如果是这样的话,那个机制是什么?

2 个答案:

答案 0 :(得分:0)

我无法确认MonetDB,但是在PostgreSQL和MySQL中(也很可能在MonetDB上),答案是肯定的,它们将检查每个值,如果引用的表上不存在该键,则会引发错误。

请注意,引用的列不需要是引用表的主键 - 您可以将任何列作为外键引用到另一个表。

答案 1 :(得分:0)

是的,当然,没有强制执行的约束是没有意义的。 你可以尝试(这是Postgres):

DROP SCHEMA tmp CASCADE;
CREATE SCHEMA tmp ;
SET search_path=tmp;

CREATE TABLE one
        ( one_id SERIAL NOT NULL PRIMARY KEY
        , name varchar
        );
INSERT INTO one(name)
SELECT 'name_' || gs::text
FROM generate_series(1,10) gs ;

CREATE TABLE two
        ( two_id SERIAL NOT NULL PRIMARY KEY
        , one_id INTEGER -- REFERENCES one(one_id)
        );

INSERT INTO two(one_id)
SELECT one_id
FROM one ;

DELETE FROM one WHERE one_id%5=0;

ALTER TABLE two
        ADD FOREIGN KEY (one_id) REFERENCES one(one_id)
        ;

\d one
\d two

结果:

NOTICE:  drop cascades to 2 other objects
DETAIL:  drop cascades to table tmp.one
drop cascades to table tmp.two
DROP SCHEMA
CREATE SCHEMA
SET
CREATE TABLE
INSERT 0 10
CREATE TABLE
INSERT 0 10
DELETE 2
ERROR:  insert or update on table "two" violates foreign key constraint "two_one_id_fkey"
DETAIL:  Key (one_id)=(5) is not present in table "one".
                                  Table "tmp.one"
 Column |       Type        |                      Modifiers                       
--------+-------------------+------------------------------------------------------
 one_id | integer           | not null default nextval('one_one_id_seq'::regclass)
 name   | character varying | 
Indexes:
    "one_pkey" PRIMARY KEY, btree (one_id)

                             Table "tmp.two"
 Column |  Type   |                      Modifiers                       
--------+---------+------------------------------------------------------
 two_id | integer | not null default nextval('two_two_id_seq'::regclass)
 one_id | integer | 
Indexes:
    "two_pkey" PRIMARY KEY, btree (two_id)

错误消息与实际插入或更新相同。并且你可以看到,一旦它对抗第一个冲突的行,引擎就会退出。