0 votes
in SQLite by
How would you drop a table in SQLite database?

1 Answer

0 votes
by

DROP TABLE command is used to delete or permanently drop a table from SQLite database.

Syntax:

DROP TABLE table_name;   

...