SQLite table FAQ: How do I drop a SQLite table? (i.e., "What is the SQLite DROP TABLE syntax?")
SQLite comes with the usual DROP TABLE command, so you can drop a SQLite database table named "orders" like this:
sqlite> drop table orders;
SQLite drop table commands in a script
If you're executing SQLite drop table commands in a SQLite script, you may want to add a little bit of programming to this to account for possible errors. In this case, you can write your SQLite drop table commands like this: