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.
Join The Discussion
Comments (1)
Related Questions on Introduction to SQL
You can add a row using SQL in a database with which of the following?
A. ADD
B. CREATE
C. INSERT
D. MAKE
The command to remove rows from a table 'CUSTOMER' is:
A. REMOVE FROM CUSTOMER ...
B. DROP FROM CUSTOMER ...
C. DELETE FROM CUSTOMER WHERE ...
D. UPDATE FROM CUSTOMER ...
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.
Which of the following is the original purpose of SQL?
A. To specify the syntax and semantics of SQL data definition language
B. To specify the syntax and semantics of SQL manipulation language
C. To define the data structures
D. All of the above

The SQL WHERE clause:
*