0 votes
in Sql by

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

1 Answer

0 votes
by

Answer: a) DROP COLUMN

Explanation: The DROP COLUMN statement is used to remove a column from an existing table in SQLite.

...