私の質問を解決してください
create trigger DeleteProduct
Before delete on Product
BEGIN
select CASE WHEN ((SELECT Inventory.InventoryID FROM Inventory WHERE Inventory.ProductID = OLD.ProductID and Inventory.Quantity=0) ISNULL)
THEN
RAISE(ABORT,'Error code 82')
Else
DELETE from inventory where inventory.ProductID=OLD.ProductID;
END;
END;
近くの削除ステートメントにエラーがあります