create table prodtranspno number 4ptype char 1


CREATE TABLE prodtrans

(

pno number (4)

ptype char (1) CHECK (ptype in ('I','R','S')), qty number (5)

FOREIGN KEY pno REFERENCES product (pno) ON DELETE CASCADE);

 

In the table so formed please reminder the referential constraint on the foreign key pno in prodtrans table to product table. Any product record if removed from the product table will trigger deletion of all the related records (ON DELETE CASCADE) in the prodtrans table.

 

Request for Solution File

Ask an Expert for Answer!!
Database Management System: create table prodtranspno number 4ptype char 1
Reference No:- TGS0209774

Expected delivery within 24 Hours