Multiple choice Which command is used to make back up copies of database tables? CREATE INTO SELECT INTO CREATE FROM NONE OF THESE Reveal answer Fill a bubble to check yourself B Correct answer Explanation SELECT INTO is a SQL command (particularly in SQL Server) that creates a new table and populates it with the result set from a query, effectively creating a backup. CREATE INTO and CREATE FROM are not valid SQL syntax for this purpose.