Which of the following SQL statements is used to remove a column from an existing table in SQLite?
a) DROP COLUMN
b) REMOVE COLUMN
c) DELETE COLUMN
d) None of the above
Answer: a) DROP COLUMN
Explanation: The DROP COLUMN statement is used to remove a column from an existing table in SQLite.