0 votes
in Sql by
Which of the following statements is used to delete a table in SQLite?

a) DROP

b) DELETE

c) TRUNCATE

d) REMOVE

1 Answer

0 votes
by
Answer: a) DROP

Explanation: The DROP statement is used to delete a table in SQLite. The syntax is as follows: DROP TABLE table_name;
...