When using the SQL INSERT statement:

When using the SQL INSERT statement: 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

You are the database administrator for a financial services company. Employees enter data 24 hours a day into a SQL Server 2000 database. These employees report slower response times when new account information is gathered from branch offices and added to the database. You currently use the following BULK INSERT statement to add the account information.BULK INSERT finance.dbo.customersFROM 'd:bulkaccts143_10142000.txt'WITH DATAFILETYPE = 'char', FIELDTERMINATOR = 't', ROWTERMINATOR = 'n', TABLOCK You want to ensure that response times do not slow when new account information is added to the database. What should you do?