有一个table_a,其主键ID作为外键引用Table_b,我想创建另一个table_c,其外键引用应该是Table_b的列。 虽然我以某种方式创建了表,并希望通过JPA Eclipse向导创建一个Persistence类。 但我没有这样做,任何想法?
Table_A
id int not null primary,----------------------------
name varchar(20) |
|
Table_B
id int not null, |
a_id int not null, |
dept varchar(20),
Primary Key(id), |
Foreigns key(a_id) References Table_A (id)-------->|
|
Table_C |
id int not null,
c_id int not null, |
desc varchar(25),
Primary Key (id), |
Foreigns key (c_id) References Table_B (a_id)----->|
我对table_c
的SQL创建有疑问,但我收到了上面提到的数据库设计文档,任何人都可以帮助我。