What foreign key action should be added to ensure that if a…

What foreign key action should be added to ensure that if a supplier is removed from the Supplier table, the products associated with the same supplier are also removed? CREATE TABLE Product (   ProductId INT NOT NULL AUTO_INCREMENT,   ProductName VARCHAR(50),   UnitPrice DECIMAL(5,2),   SupplierId INT,   PRIMARY KEY (ProductId),   FOREIGN KEY (SupplierId) REFERENCES Supplier(SupplierId)      _____);