SQL - Table Relationships
You have this foreign key constraint:
Which error will occur if you try to delete a product that is referenced by an order, but the
FOREIGN KEY (ProductID) REFERENCES Products(ProductID) ON DELETE SET NULL
Which error will occur if you try to delete a product that is referenced by an order, but the
ProductID column in Orders is defined as NOT NULL?