The TRUNCATE TABLE command deletes the data inside a table, but not the table itself.
TRUNCATE OBJECTNAME TABLENAME;
The column parameters specify the names of the columns of the table.
The datatype parameter specifies the type of data the column can hold (e.g. varchar, integer, date, etc.).