我在这里得到了另一个问题的答案:
这是一个很好的答案,但我不了解有关引用的内容。我可以做SQL语句,但我从未使用过引用。
答案 0 :(得分:12)
REFERENCES关键字是foreign key constraint的一部分,它会导致MySQL要求引用表的指定列中的值也存在于指定的列中。参考表。
这可以防止外键引用不存在或被删除的ID,并且可以选择阻止您在仍然引用行时删除它们。
一个具体示例是,如果每个员工都必须属于某个部门,那么您可以从employee.departmentid
引用department.id
添加外键约束。
运行以下代码以创建两个测试表tablea
和tableb
,其中a_id
中的tableb
列引用tablea
的主键。 tablea
填充了几行。
CREATE TABLE tablea (
id INT PRIMARY KEY,
foo VARCHAR(100) NOT NULL
) Engine = InnoDB;
INSERT INTO tablea (id, foo) VALUES
(1, 'foo1'),
(2, 'foo2'),
(3, 'foo3');
CREATE TABLE tableb (
id INT PRIMARY KEY,
a_id INT NOT NULL,
bar VARCHAR(100) NOT NULL,
FOREIGN KEY fk_b_a_id (a_id) REFERENCES tablea (id)
) Engine = InnoDB;
现在尝试以下命令:
INSERT INTO tableb (id, a_id, bar) VALUES (1, 2, 'bar1');
-- succeeds because there is a row in tablea with id 2
INSERT INTO tableb (id, a_id, bar) VALUES (2, 4, 'bar2');
-- fails because there is not a row in tablea with id 4
DELETE FROM tablea WHERE id = 1;
-- succeeds because there is no row in tableb which references this row
DELETE FROM tablea WHERE id = 2;
-- fails because there is a row in tableb which references this row
重要提示:两个表都必须是InnoDB表,否则会忽略约束。
答案 1 :(得分:2)
REFERENCES
关键字显示外键约束,这意味着:
FOREIGN KEY (`chat_id` ) REFERENCES `chats`.`chat` (`id` )
...当前表中的chat_id
列只能包含chat
表id
列中已存在的值。
例如,如果CHAT.id列包含:
id
----
a
b
c
..您无法将除/ b / c以外的任何值添加到chat_id
列中。