If you only want to show the value 'Yes' then:SELECT whatever,(CASE WHEN EXISTS(SELECT * FROM Offers WHERE idBiz = B.ID) THEN 'Yes' ELSE 'No' END) AS HasOffer FROM BusinessOwners B
To show the offer name:SELECT whatever,(SELECT TOP 1 Name FROM Offers WHERE idBiz = B.ID) AS Offer FROM BusinessOwners B
Please note this code is technically off because it randomly chooses 1 offer for each business. If a business has more than one offer, you don't know which one you'll get.Sarah Berger MCSD