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

SQL uses INSERT INTO statement to add new data. Option B correctly identifies INSERT INTO as the statement used. Options A (ADD NEW), C (ADD RECORD), and D (INSERT NEW) are not valid SQL statements. The complete syntax would be INSERT INTO table_name VALUES (...) or INSERT INTO table_name (columns) VALUES (...).