- 论坛徽章:
- 0
|
主外键问题
不会吧!我把语句发给你看看,它也没报错啊。
Db2 create table 表一 (编号 numeric( generated always as identity,中文目名 char(10) not null with default ‘膜翅目’,英文目名 char(30) not null with default ‘hymenoptera’,中文科名 char(20) not null,英文科名 char(30) not null,中文种名 char(20) not null,英文种名 char(30) not null,定名人 varchar(20),定名时间 date,constraint unique_biaoyi primary key(编号))
Db2 create table 表二 (编号 numeric( generated always as identity,种编号 numeric( not null,寄主 varchar(200) not null,constraint unique_biaoer primary key(编号),foreign key(种编号) references 表一(编号) on delete cascade) |
|