To remove all of the content from the Students table but keep the schema, which statement should you use?
REMOVE * FROM Students;
DROP TABLE Students;
TRUNCATE * FROM Students;
TRUNCATE TABLE Students;