0 votes
in Sql by

Which of the following commands is used to delete data from a table in SQLite?

a) REMOVE

b) DROP

c) TRUNCATE

d) DELETE

1 Answer

0 votes
by
Answer: d) DELETE

Explanation: The DELETE statement is used to delete data from a table in SQLite. The syntax is as follows: DELETE FROM table_name WHERE condition;
...