Multiple choice technology databases

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

  1. ADD NEW

  2. ADD RECORD

  3. INSERT NEW

  4. INSERT INTO

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

INSERT INTO is the standard SQL command for adding new records to a table. The syntax requires specifying the table name after the keywords, making INSERT INTO the only valid option among the choices.