ComenzarEmpieza gratis

Tracking retired products

As shown in the example from the video, Fresh Fruit Delivery needs to keep track of any retired products in a dedicated history table (RetiredProducts).

You are asked to create a new trigger that fires when rows are removed from the Products table.

The information about the removed rows will be saved into the RetiredProducts table.

Este ejercicio forma parte del curso

Building and Optimizing Triggers in SQL Server

Ver curso

Instrucciones del ejercicio

  • Create the TrackRetiredProducts trigger on the Products table.
  • Set the trigger to fire after rows are deleted from the table.

Ejercicio interactivo práctico

Prueba este ejercicio completando el código de muestra.

-- Create the trigger
CREATE ___ TrackRetiredProducts
ON ___
___ DELETE
AS
	INSERT INTO RetiredProducts (Product, Measure)
	SELECT Product, Measure
	FROM deleted;
Editar y ejecutar código