共通テーブル式 を使用します (CTE)SQL Server 2005以降を使用している場合:
with cte as (
select columns
from result_set
where condition_common
)
select columns
from cte as subset1
join
cte as subset2
on subset1.somekey = subset2.somekey
where otherconditions