sqlite数据库设计

时间:2012-05-03 17:24:07

标签: sql sqlite

我有3张桌子

Table 1: PlantName (primary key)

Table 2: (primary key(Id + PlantName)), foreign key(PlantName) references Table1(PlantName)

Table 3: (primary key(Id + PlantName)), foreign key(id) references Table2(id)

When I insert data into these tables

Table1: Ark1
Ark2
Ark3

Table 2:
1,Ark1
2,Ark1
3, Ark1
1, Ark2
2, Ark2
1, B1
2, B2

Table 3:
1,Ark1
2,Ark2

在Table3中的这个插入中,它有外键问题。

请建议

谢谢

1 个答案:

答案 0 :(得分:1)

表1中不存在B1和B2,导致外键违规。