Login
Remember
Register
Ask a Question
Which of the following commands is used to insert data into a table in SQLite?
0
votes
asked
Jun 3, 2024
in
Sql
by
rajeshsharma
Which of the following commands is used to insert data into a table in SQLite?
a) INSERT INTO
b) ADD
c) UPDATE
d) CREATE
table
sqlite
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jun 3, 2024
by
rajeshsharma
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, …);
...