2
select col1
from table1
case when @col2 is null then left outer join else join end
table2 on (join condition)

上記は私のクエリです。1つの条件に基づいて左外部結合または右外部結合のどちらかを選択したいと思います。

上記の問題を実装するためのより良い解決策はありますか

4

4 に答える 4

1

これが実際に説明されている方法で実行できるかどうかはわかりません...私はそれを次のように書きます。したがって、追加の条件に基づいて1つのJOINを短絡します。

select col1
  from table1
  left outer join table2
    on (condition)
   and @col2 is null
 right outer join table2
    on (condition)
   and @col2 is not null
于 2013-03-06T08:41:36.520 に答える
0
select col1
from table1
left outer join 
table2 on (join condition)
where @col2 is null or (@col2 is not null and table2.id is not null)

これは、条件から選択するleft outerinner join、条件に基づいて選択します。

于 2013-03-06T08:48:49.623 に答える
0

この構造を使用します。

select *
from (
   select 
     Key = 1,
   -- remainder of left outer join 
   union all
   select
     Key=2,
   -- remainder of right outer join
) T
where Key = case when (condition) then 1 else 2 end
于 2013-03-06T09:33:17.533 に答える
0
select col1
from table1 t1 full join table2 t2 on (join condition)
where case when @col2 is null then t2.col1 else t1.col1 end IS NOT NULL

このコードを試すことができます。

于 2013-03-07T07:01:24.817 に答える