You can use queries for copying records of a table to another table.
Following query will automatically create
destination table
select * into <destination table=""> from <source table=""></source></destination>
If the table is already created
insert into <tablename> select * from <table name=""> where [condition].</table></tablename>
Thanks
Ashish