Difficulty: Easy
Correct Answer: INSERT
Explanation:
Introduction / Context:
Data manipulation involves inserting new rows, updating existing rows, and deleting unwanted rows. Knowing the correct DML verb helps you write portable SQL that behaves consistently across database vendors.
Given Data / Assumptions:
Concept / Approach:
INSERT adds a new row to a table. CREATE defines new database objects (tables, indexes). ADD and MAKE are not standard SQL verbs for row insertion; APPEND is a common English term but not a standard SQL keyword.
Step-by-Step Solution:
Verification / Alternative check:
Every major DBMS documents INSERT as the canonical row-creation command in the DML family alongside UPDATE and DELETE.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
INSERT
Discussion & Comments