Q47
Which of the following SQL commands can be used to add data to a database table?
A.
ADD
B.
UPDATE
C.
APPEND
D.
INSERT
AnswerAnswer: Option D
Solution
Answer: Option D
Solution:
The SQL command used to add data to a database table is INSERT. The INSERT statement is used to insert new rows or records into a table. Option D is the correct choice for adding data to a table in SQL. Options A, B, and C are not typically used for this purpose in SQL.