My version of SQLite does not support the IF EXISTS operator. How can I drop a table which may or may not exist without getting an error slapped at me?
IF EXISTS
Just use this.
DROP TABLE TABLE_NAME;