INSERT INTO TABLE_A SELECT * FROM TABLE_B
Is a commonly used sentence, which is used to insert values of a table into another table. Selected columns can also be inserted using this.
SELECT * INTO TABLE_A FROM TABLE_B
Will create a new TABLE_A populated with values of TABLE_B