削除を伝播する制約を追加できない場合は、必要なすべての削除を自分で作成する必要があります。
delete employee where companyid in (select companyid from company c where productid = xxx);
delete company where productid=xxx;
delete product where productid=xxx;
削除を伝播する制約を追加できない場合は、必要なすべての削除を自分で作成する必要があります。
delete employee where companyid in (select companyid from company c where productid = xxx);
delete company where productid=xxx;
delete product where productid=xxx;