I am trying to insert all values of one table into another. But the insert statement accepts values, but i would like it to accept a select * from the initial_Table. Is this
Try this:
INSERT INTO newTable SELECT * FROM initial_Table