0 votes
in Sql by

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

a) UPDATE

b) MODIFY

c) ALTER

d) CHANGE

1 Answer

0 votes
by

Answer: a) UPDATE

Explanation: The UPDATE statement is used to update data in a table in SQLite. The syntax is as follows: UPDATE table_name SET column1=value1, column2=value2 WHERE condition;

...