Database Fundamentals — Question 4
You need to add rows to a database table.
Which Structured Query Language (SQL) keyword should you use?
Answer options
- A. JOIN
- B. INSERT
- C. CREATE
- D. UPDATE
Correct answer: B
Explanation
The correct answer is B, INSERT, as it is specifically designed for adding new rows to a table. A, JOIN is used to combine rows from two or more tables based on related columns. C, CREATE is used to create new database objects, and D, UPDATE is used to modify existing records in a table.