|< < 37 > >|

The Item table

create table item( ord_id bigint not null references ord, line_number int not null, quantity int not null, product_id bigint references product, primary key(ord_id, line_number) );

|< < 37 > >|