0 votes
in Sql by
Which of the following SQL statements is used to add a new column to an existing table in SQLite?

a) ADD COLUMN

b) CREATE COLUMN

c) INSERT COLUMN

d) None of the above

1 Answer

0 votes
by

Answer: a) ADD COLUMN

Explanation: The ADD COLUMN statement is used to add a new column to an existing table in SQLite.

...