|< < 33 > >|

Outer joins

Schema

create table P( p_id int not null primary key, p_label varchar not null ); create table F( f_id int not null primary key, p_id int references P, f_label varchar not null );

|< < 33 > >|