Multiple choice technology databases

'Select Into'Statement retrieves rows and columns from one source table to a target table.

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

The SELECT INTO statement creates a new target table and populates it with rows and columns from the source table. It's a combination of CREATE TABLE and INSERT SELECT - the new table is automatically created based on the structure of the selected data, making it useful for quick table creation and data copying.