Reference: Truncate Statement

Truncate allows clearing all data from a table.

Usage example:

truncate movies, stars, starsIn;

This removes all rows from the specified tables, similar to an unqualified delete.

⚠️
Truncate is a destructive operation and will cause all data in the specified tables to be lost.