How to reuse a sub query in sql?

元气小坏坏 提交于 2020-01-10 04:51:06

问题


I have query like the following

select columns
from (select columns1
      from result_set
      where condition_common and condition1) as subset1
      join
      (select columns2
       from result_set
       where condition_common and condition2) as subset2 
      on subset1.somekey = subset2.somekey

I want to somehow reuse

select columns
from result_set
where condition_common

I have oversimplified the above query, but the above select in reality is huge and complicated. I dont want to have the burden of making sure both are in sync

I dont have any means of programmatically reusing it. T-SQL is ruled out. I can only write simple queries. This is an app limitation.

Is there a way to reuse same subquery, in a single statement


回答1:


Use a Common Table Expression (CTE) if you're using 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


来源:https://stackoverflow.com/questions/14987317/how-to-reuse-a-sub-query-in-sql

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!