Examveda

You can add a row using SQL in a database with which of the following?

A. ADD

B. CREATE

C. INSERT

D. MAKE

Answer: Option C

Solution (By Examveda Team)

Option A: ADD - In SQL, ADD is not typically used to add new rows to a database table. It is more commonly used to add new columns to an existing table structure.
Option B: CREATE - The CREATE statement in SQL is used to create new database objects such as tables, indexes, or views. It is not used specifically for adding rows to a table.
Option C: INSERT - The INSERT statement in SQL is used to insert new rows into a table. You specify the table name and the values you want to insert into the new row.
Option D: MAKE - There is no standard SQL command or keyword called MAKE for adding rows to a database table.
Conclusion:
To add a new row to a database table in SQL, you use the INSERT statement. Therefore, the correct answer is Option C: INSERT.

This Question Belongs to Database >> Introduction To SQL

Join The Discussion

Comments (1)

  1. Varun Corleone
    Varun Corleone:
    3 years ago

    The SQL WHERE clause:
    *

Related Questions on Introduction to SQL

The SQL WHERE clause:

A. limits the column data that are returned.

B. limits the row data are returned.

C. Both A and B are correct.

D. Neither A nor B are correct.