Seems like you have one database for every table. Somewhat unusual design.
Anyway, try:
select * from Customer.dbo.customer
where country IN (select country from Supplies.dbo.Suppliers);
But probably you should have one single database for your tables.