There are lots of ways to do this.
1) use INSERT ... SELECT.
If the two DBs are in the same server:
INSERT NewTable (Field1, Field2,...)
SELECT Field1,Field2,...
FROM CurrentDB.Table
If the two DBs are in the same server, u need to define a linked server.
2) Use import/export wizard
3) BCP