You need to remove all data from a table name Products. Which query fully logs the removal of each record?
DELETE FROM Products;
TRUNCATE FROM Products *;
DELETE * FROM Products;
TRUNCATE TABLE Products;