you can still use join. join does not require columns to be linked by foreign key constraint or being a primary key
SELECT t1.f1, t1.f2, t1.f3... t2.*f7*, t1.f8 ...
FROM TableName t1
INNER JOIN Table2 t2
ON t2.Value = t1.f7
AND t2.Name='SoameName'
WHERE Criteria
------------------------------------------------------------------------------------------------------
SQL Server MVP
http://visakhm.blogspot.com/