Five ways to move a table from one database to another database?

Assuming the two databases on the same instance.
  1. Import/Export Wizard - Tasks|Export Data
  2. Create an SSIS Package
  3. Script Table As...
  4. Tasks|Generate Scripts...(This option will also let you script many properties of the table such as constraints, indexes etc. - Advanced)
  5. Use the script below. With this option, you need to delete the table from the old database manually after the action.
     SELECT  *
     INTO    NewDB.dbo.t1
     FROM    OldDB.dbo.t1