This code selects data out of a table:
SELECT Column1, Column2, Column3 FROM MySourceTable;
This code creates a new table called MyNewTable and puts that data into it
MyNewTable
SELECT Column1, Column2, Column3 INTO MyNewTable FROM MySourceTable;