|< < 24 > >|

Foreign keys

Most general syntax

create table P( p_id int not null, x int ); create table F( f_id int not null primary key, p_id int, y int ); alter table F add foreign key(p_id) references P;

|< < 24 > >|