Multiple choice technology databases

Which SQL statement is used to insert new data in a database?

  1. ADD NEW

  2. INSERT INTO

  3. ADD RECORD

  4. INSERT NEW

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

INSERT INTO is the correct SQL statement for adding new records to a database table. ADD NEW, ADD RECORD, and INSERT NEW are not valid SQL syntax - they may be used in other programming languages but are not part of standard SQL.