Examveda

The ADD command is used to enter one row of data or to add multiple rows as a result of a query.

A. True

B. False

Answer: Option B

Solution (By Examveda Team)

Option A: True - This option is incorrect. In SQL, the ADD command is not used to enter one row of data or to add multiple rows as a result of a query. SQL does not have a standard "ADD" command for adding rows of data directly.
Option B: False - This is the correct answer. In SQL, to add one or more rows of data to a table, you typically use the INSERT INTO statement. The INSERT INTO statement is used to add new records to a table in the database.
Conclusion:
The statement "The ADD command is used to enter one row of data or to add multiple rows as a result of a query" is Option B: False. The correct SQL command to add new rows of data to a table is INSERT INTO, not ADD. Therefore, the correct answer is False.

This Question Belongs to Database >> Introduction To SQL

Join The Discussion

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.