Yes, this is possible. To query two servers you will need to create a linked server. You would need to fully qualify the table on the second server. For example...
SELECT ColA, ColB
FROM Server2.Database1.dbo.Table1
You can find plenty of information on Linked Servers in these forums or in BOL.