1#The SELECT INTO statement selects data from one table and inserts it into a different table.
2#The SELECT INTO statement is most often used to create backup copies of tables.
3syntax->SELECT *
4INTO new_table_name [IN externaldatabase]
5FROM old_tablename
6///example///
7SELECT *
8INTO Persons_Backup
9FROM Persons