DROP TABLE statement in SQLite

Table definitions and all associated data can be removed in SQLite using the DROP TABLE statement.

DROP TABLE table_name;

This also removes all associated indexes, triggers, constraints, and permission specifications.