When using the SQL INSERT statement:

A rows cannot be copied in mass from one table to another only.
B rows can be modified according to criteria only.
C rows can either be inserted into a table one at a time or in groups.
D rows can be inserted into a table only one at a time only.

Correct Answer: rows can either be inserted into a table one at a time or in groups.

When using the SQL INSERT statement, rows can either be inserted into a table one at a time or in groups. This means that you can insert multiple rows into a table with a single INSERT statement, making it more efficient for mass data insertion. Option C is the correct choice, while Options A, B, and D do not accurately describe the capabilities of the INSERT statement.

Related Questions

Using the SQL GROUP BY phrase with a SELECT statement can help detect which of the following problems?

Next steps