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

  1. ADD RECORD

  2. ADD INTO

  3. INSERT

  4. ADD NEW


Correct Option: C

AI Explanation

To answer this question, you need to understand the SQL statement used to insert new data into a database. Let's go through each option to understand why it is correct or incorrect:

Option A) ADD RECORD - This option is incorrect because there is no SQL statement called "ADD RECORD" for inserting new data into a database.

Option B) ADD INTO - This option is incorrect because there is no SQL statement called "ADD INTO" for inserting new data into a database.

Option C) INSERT - This option is correct because the SQL statement "INSERT" is used to insert new data into a database. The syntax for the INSERT statement is as follows:

INSERT INTO table_name (column1, column2, column3, ...)
VALUES (value1, value2, value3, ...);

Option D) ADD NEW - This option is incorrect because there is no SQL statement called "ADD NEW" for inserting new data into a database.

The correct answer is C) INSERT. This option is correct because the SQL statement "INSERT" is used to insert new data into a database.

Find more quizzes: