कॉमन टेबल एक्सप्रेशन का इस्तेमाल करें (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