Question: To remove all of the content from the Students table but keep the schema, which statement should you use?
- `TRUNCATE TABLE Students;`
- `TRUNCATE * FROM Students;`
- `DROP TABLE Students;`
- `REMOVE * FROM Students;`
Answer: The correct answer of the above question is Option A:`TRUNCATE TABLE Students;`