如何添加一列外键的值?

时间:2013-10-20 08:58:02

标签: sql database foreign-keys

我有一个名为带有以下属性的电影的表:

id
title
director
and genre(fk)

这里的流派列是空的。 然后我有流派表:

genreid
genre

现在如何填写电影表格中的流派列,为每部电影指定流派?

1 个答案:

答案 0 :(得分:0)

使用UPDATE声明

UPDATE movies 
SET genre = (SELECT id FROM genres WHERE genre = 'action')
WHERE title = 'Batman'