0 votes
in Sql by
Which of the following commands is used to insert data into a table in SQLite?

a) INSERT INTO

b) ADD

c) UPDATE

d) CREATE

1 Answer

0 votes
by
Answer: a) INSERT INTO

Explanation: The INSERT INTO statement is used to insert data into a table in SQLite. The syntax is as follows: INSERT INTO table_name (column1, column2, …) VALUES (value1, value2, …);
...