1) I would suggest creating a script from the table that you want to copy and then run it in your target database.
2) Write an Insert statement in another SQL Query window to import this data
Insert into database1.Table1 (Field1, Field2) Select Field1, Field2 from Database2.Table
source share