Multiple choice technology databases The SQL SELECT INTO statement can be used to create backup copies of tables. True False Reveal answer Fill a bubble to check yourself A Correct answer Explanation SELECT INTO creates a new table and copies data from an existing table. This is useful for creating backup copies or staging tables. SELECT column_list INTO new_table FROM source_table copies the structure and data.