Database Fundamentals — Question 120
In SQL, an insert statement is used to add a:
Answer options
- A. User to a database.
- B. Row of data to a table.
- C. Table to a database.
- D. Column to a table definition.
Correct answer: B
Explanation
The correct answer is B, as the INSERT statement in SQL is specifically designed to add rows of data to a table. Options A, C, and D are incorrect because they refer to actions that cannot be performed using an INSERT statement.