Guest User

Untitled

a guest
Oct 23rd, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. create table Supplier_Item(
  2. suppquantity number(3),
  3. SuppId number(5),
  4. ItemId number(5),
  5. CONSTRAINT pk_supplier_item PRIMARY KEY (SuppId, ItemId),
  6. CONSTRAINT fk_supplier_item FOREIGN KEY (SuppId, ItemId)
  7. REFERENCES Supplier(SuppId)
  8. References Item(ItemId)
  9. );
Add Comment
Please, Sign In to add comment