Question: To remove all of the content from the Students table but keep the schema, which statement should you use?

  1. `TRUNCATE TABLE Students;`
  2. `TRUNCATE * FROM Students;`
  3. `DROP TABLE Students;`
  4. `REMOVE * FROM Students;`

Answer: The correct answer of the above question is Option A:`TRUNCATE TABLE Students;`