Question: You need to remove all data from a table name Products. Which query fully logs the removal of each record?

  1. `TRUNCATE FROM Products *;`
  2. `DELETE FROM Products;`
  3. `DELETE * FROM Products;`
  4. `TRUNCATE TABLE Products;`

Answer: The correct answer of the above question is Option B:`DELETE FROM Products;`